diff --git a/src/main/menu.ts b/src/main/menu.ts index 3fb1ae68..34d50617 100644 --- a/src/main/menu.ts +++ b/src/main/menu.ts @@ -138,6 +138,12 @@ export default ({ app, mainWindow, newVersion, isStoreBuild }: { mainWindow.webContents.send('importEdlFile', 'dv-analyzer-summary-txt'); }, }, + { + label: esc(t('OpenTimelineIO')), + click() { + mainWindow.webContents.send('importEdlFile', 'otio'); + }, + }, ], }, { diff --git a/src/renderer/src/edlFormats.ts b/src/renderer/src/edlFormats.ts index ebc8e300..cb28a35f 100644 --- a/src/renderer/src/edlFormats.ts +++ b/src/renderer/src/edlFormats.ts @@ -509,4 +509,4 @@ export function parseOtio(data: unknown): SegmentBase[] { }); return segments; -} \ No newline at end of file +}