-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExport EDL.js
225 lines (207 loc) · 7.12 KB
/
Export EDL.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/**
* Sample script that exports the top-most video and audio track as a
* CMX 3600 EDL.
*
*
* Limitations:
* - supports only 1 video and 1 audio track.
* - supports cuts and cross fades (dissolves) only.
* - assumes all audio is stereo.
* - etc.
*
* Revision Date: Mar. 22, 2004
**/
import System;
import System.Text;
import System.IO;
import System.Windows.Forms;
import ScriptPortal.Vegas;
var writer : StreamWriter = null;
try {
var noTime = new Timecode();
// find selected tracks
var videoTrack = FindTopTrackOfType(MediaType.Video);
var audioTrack = FindTopTrackOfType(MediaType.Audio);
if ((null == videoTrack) && (null == audioTrack)) {
throw "no tracks to export";
}
var projPath = Vegas.Project.FilePath;
var title = Path.GetFileNameWithoutExtension(projPath);
var outputFilename = Path.ChangeExtension(projPath, ".EDL");
var outputFilename = ShowSaveFileDialog("EDL Files (*.EDL)|*.EDL", "Save EDL", title);
if (null != outputFilename) {
writer = new StreamWriter(outputFilename, false, System.Text.Encoding.UTF8, 512);
// write the tifle and mode
writer.WriteLine("TITLE: " + title);
writer.WriteLine("FCM: " + GetFCM());
var editCount : int = 1;
// do video track
if (null != videoTrack) {
editCount = ExportTrack(new Enumerator(videoTrack.Events), editCount, null);
}
// do audio track
if (null != audioTrack) {
editCount = ExportTrack(new Enumerator(audioTrack.Events), editCount, null);
}
writer.Close();
}
} catch (e) {
if (null != writer)
writer.Close();
MessageBox.Show(e);
}
function ExportTrack(events, editIndex, prevMediaPath) {
if (events.atEnd()) return editIndex;
var currentEvent = events.item();
// look ahead to see if we need to do a dissolve.
var nextEvent = null;
events.moveNext();
if (!events.atEnd()) {
nextEvent = events.item();
}
// compute parameters for current event
var activeTake = currentEvent.ActiveTake;
var mediaPath = activeTake.MediaPath
var media = Vegas.Project.MediaPool[mediaPath];
var tapeName = GetTapeName(media);
var trackType = GetTrackType(currentEvent);
var sourceIn = media.TimecodeIn + activeTake.Offset;
var timelineIn = currentEvent.Start;
var clipLength = currentEvent.Length;
if (null != nextEvent) {
clipLength -= nextEvent.FadeIn.Length;
}
if (null != prevMediaPath) {
var frameCount = currentEvent.FadeIn.Length.FrameCount;
WriteEdit(editIndex, tapeName, trackType, "D", frameCount, sourceIn, timelineIn, clipLength);
WriteClipComment("FROM", prevMediaPath);
WriteClipComment("TO", mediaPath);
} else {
WriteEdit(editIndex, tapeName, trackType, "C", 0, sourceIn, timelineIn, clipLength);
WriteClipComment("FROM", mediaPath);
}
// add comments for altered playback rates, etc. (may want to add
// comments for inverted phase, channel remapping, looping, etc.
if (currentEvent.PlaybackRate != 1) {
writer.WriteLine("* Event PlaybackRate = " + currentEvent.PlaybackRate);
}
if (currentEvent.IsVideo()) {
if (currentEvent.Envelopes.HasEnvelope(EnvelopeType.Velocity)) {
writer.WriteLine("* Event has velocity envelope.");
}
}
if (null != nextEvent) {
var frameCount = nextEvent.FadeIn.Length.FrameCount;
if (frameCount > 0) {
sourceIn += clipLength;
timelineIn += clipLength;
WriteEdit(editIndex+1, tapeName, trackType, "C", 0, sourceIn, timelineIn, noTime);
return ExportTrack(events, editIndex+1, mediaPath);
}
}
return ExportTrack(events, editIndex+1, null);
}
// assumes all audio is stereo
function GetTrackType(evnt) {
// "V/AAAA"
if (evnt.IsVideo()) return "V ";
return "AA ";
}
function GetTapeName(media) {
var tapeName = media.TapeName;
if ((null == tapeName) || (0 == tapeName.length)) {
tapeName = "UNKNOWN";
}
// strip spaces (really should be any non-alphanumeric characters)
if (null != tapeName.match(/ /)) {
tapeName = tapeName.replace(/ /g, "");
}
if (tapeName.length > 8) {
// tape name is too long... chop off the end
tapeName = tapeName.substring(0, 8);
}
return tapeName;
}
function WriteEdit(editIndex, tapeName, trackType, editType, frameCount, sourceIn, timelineIn, clipLength) {
var edit : StringBuilder = new StringBuilder();
edit.Append(String.Format("{0:D3}", editIndex));
edit.Append(" ");
edit.Append(tapeName);
edit.Append(" ");
edit.Append(trackType);
edit.Append(" ");
edit.Append(editType);
edit.Append(" ");
if (frameCount > 0) {
edit.Append(String.Format("{0:D3}", frameCount));
//edit.Append(frameCount);
edit.Append(" ");
} else {
edit.Append(" ");
}
edit.Append(sourceIn.ToString());
edit.Append(" ");
var sourceOut = sourceIn + clipLength;
edit.Append(sourceOut.ToString());
edit.Append(" ");
edit.Append(timelineIn.ToString());
edit.Append(" ");
var timelineOut = timelineIn + clipLength;
edit.Append(timelineOut.ToString());
writer.WriteLine(edit.ToString());
}
function WriteClipComment(prefix, mediaPath) {
var c = new StringBuilder("* ");
c.Append(prefix);
c.Append(" CLIP NAME: ");
c.Append(Path.GetFileNameWithoutExtension(mediaPath));
writer.WriteLine(c.ToString());
}
function GetFCM() : String {
var rulerFormat = Vegas.Project.Ruler.Format;
switch (rulerFormat) {
case RulerFormat.SmpteDrop:
return "DROP FRAME";
case RulerFormat.SmpteFilmSync:
case RulerFormat.SmpteFilmSyncIVTC:
return "NON-DROP 24 FRAME";
default:
return "NON-DROP FRAME";
}
}
function FindTopTrackOfType(mediaType) : Track {
var trackEnum = new Enumerator(Vegas.Project.Tracks);
while (!trackEnum.atEnd()) {
var track : Track = Track(trackEnum.item());
if (track.MediaType == mediaType) {
return track;
}
trackEnum.moveNext();
}
return null;
}
// an example filter: "PNG File (*.png)|*.png|JPEG File (*.jpg)|*.jpg"
function ShowSaveFileDialog(filter, title, defaultFilename) {
var saveFileDialog = new SaveFileDialog();
if (null == filter) {
filter = "All Files (*.*)|*.*";
}
saveFileDialog.Filter = filter;
if (null != title)
saveFileDialog.Title = title;
saveFileDialog.CheckPathExists = true;
saveFileDialog.AddExtension = true;
if (null != defaultFilename) {
var initialDir = Path.GetDirectoryName(defaultFilename);
if (Directory.Exists(initialDir)) {
saveFileDialog.InitialDirectory = initialDir;
}
saveFileDialog.DefaultExt = Path.GetExtension(defaultFilename);
saveFileDialog.FileName = Path.GetFileName(defaultFilename);
}
if (System.Windows.Forms.DialogResult.OK == saveFileDialog.ShowDialog()) {
return Path.GetFullPath(saveFileDialog.FileName);
} else {
return null;
}
}