not sure if it will work like i hoped..
but can anyone test it? (with last commit reverted, so 'ExportEDL' option
will be around in menu again)
try with 24 / 25 fps session (PAL)
diff --git a/cinelerra-5.1/cinelerra/exportedl.C b/cinelerra-5.1/cinelerra/exportedl.C
index f4e3805c..10c85957 100644
--- a/cinelerra-5.1/cinelerra/exportedl.C
+++ b/cinelerra-5.1/cinelerra/exportedl.C
@@ -139,7 +139,7 @@ void ExportEDLAsset::export_it()
// TODO: Find docs about exact header for CMX3600
fprintf(fh, "TITLE: Cinproj FORMAT: CMX 3600 4-Ch\n");
-
+ fprintf(fh, "FCM: NON DROP FRAME\n"); // fixme: select depending on fps
int colnum = 1;
@@ -147,7 +147,7 @@ void ExportEDLAsset::export_it()
edit;
edit = edit->next)
{
- char reel_name[BCTEXTLEN];
+ char reel_name[BCTEXTLEN] ="AX ";
char avselect[5];
char edittype[5] = "C ";
char cutinfo[4] = " ";
@@ -187,10 +187,13 @@ void ExportEDLAsset::export_it()
} else
{
edit_to_timecodes(edit, sourceinpoint, sourceoutpoint, destinpoint, destoutpoint, reel_name);
+ char filename[1024];
+ strcpy(filename,edit->asset->path);
fprintf(fh, "%03d %8s %s %4s %3s", colnum, reel_name, avselect, edittype, cutinfo);
fprintf(fh, " %s %s", sourceinpoint, sourceoutpoint);
fprintf(fh, " %s %s", destinpoint, destoutpoint);
fprintf(fh,"\n");
+ fprintf(fh,"* FROM CLIP NAME: %s\n", filename);
last_dissolve = 0;
}
--
Cin mailing list
[email protected]
https://lists.cinelerra-gg.org/mailman/listinfo/cin