28
|
1 |
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
2 |
<creatorscript schemaVersion="1.0" scriptVersion="1.0"
|
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4 |
xsi:noNamespaceSchemaLocation="creator.xsd">
|
|
5 |
|
|
6 |
|
|
7 |
<!-- Create one jpg image file -->
|
|
8 |
<file>
|
|
9 |
<fields>
|
|
10 |
<type>JPEG-25kB</type>
|
|
11 |
<directory>c:\data\images</directory>
|
|
12 |
</fields>
|
|
13 |
</file>
|
|
14 |
|
|
15 |
<!-- Create two midi files with DRM Forward Lock protection -->
|
|
16 |
<file amount="2">
|
|
17 |
<fields>
|
|
18 |
<type>MIDI-10kB</type>
|
|
19 |
<directory>c:\data\Sounds</directory>
|
|
20 |
<encryption type="DRM-FL">
|
|
21 |
</encryption>
|
|
22 |
</fields>
|
|
23 |
</file>
|
|
24 |
|
|
25 |
<!-- Create one DRM protected 3GPP video file with specific access constraints -->
|
|
26 |
<file>
|
|
27 |
<fields>
|
|
28 |
<type>3GPP-70kB</type>
|
|
29 |
<directory>c:\data\Videos</directory>
|
|
30 |
<!-- Define DRM Combined Delivery encryption type -->
|
|
31 |
<encryption type="DRM-CD">
|
|
32 |
<right type="play">
|
|
33 |
<!-- Define 21min 1s accumulated time constraint -->
|
|
34 |
<accumulated>P0Y0M0DT0H21M1S</accumulated>
|
|
35 |
<!-- Define that the content can only be played twice -->
|
|
36 |
<count>2</count>
|
|
37 |
</right>
|
|
38 |
</encryption>
|
|
39 |
</fields>
|
|
40 |
</file>
|
|
41 |
|
|
42 |
<!-- Create one DRM protected gif image file with specific access constraints -->
|
|
43 |
<file>
|
|
44 |
<fields>
|
|
45 |
<type>GIF-2kB</type>
|
|
46 |
<directory>c:\data\Images</directory>
|
|
47 |
<!-- Define DRM Combined Delivery encryption type -->
|
|
48 |
<encryption type="DRM-CD">
|
|
49 |
<right type="display">
|
|
50 |
<!-- Define that the content can be accessed 1,5h after first access -->
|
|
51 |
<interval>P0Y0M0DT1H30M0S</interval>
|
|
52 |
<!-- Define timeframe in which the content can be accessed -->
|
|
53 |
<starttime>2008-09-26T13:49:57</starttime>
|
|
54 |
<endtime>2009-03-27T16:15:00</endtime>
|
|
55 |
</right>
|
|
56 |
</encryption>
|
|
57 |
</fields>
|
|
58 |
</file>
|
|
59 |
|
|
60 |
</creatorscript>
|