如下是.clt文件,用于导入megui进行音频切割
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0"?>
<Cuts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Framerate>29.970029970029969
</Framerate>
<Style>
NO_TRANSITION
</Style>
<AllCuts>
<CutSection>
<startFrame>2861
</startFrame>
<endFrame>15102
</endFrame>
</CutSection>
<CutSection>
<startFrame>16677
</startFrame>
<endFrame>29773
</endFrame>
</CutSection>
<CutSection>
<startFrame>32471
</startFrame>
<endFrame>40442
</endFrame>
</CutSection>
<CutSection>
<startFrame>42691
</startFrame>
<endFrame>51711
</endFrame>
</CutSection>
</AllCuts>
</Cuts>
|
1
2
3
4
5
6
|
<Framerate>29.970029970029969
</Framerate> #为帧率
<CutSection>
<startFrame>42691
</startFrame>#开始帧
<endFrame>51711
</endFrame>#结束帧
</CutSection>
|