| 1 | export interface EDLEvent { |
| 2 | eventNumber: string; |
| 3 | reelNumber: string; |
| 4 | trackType: string; |
| 5 | transition: string; |
| 6 | sourceIn: string; |
| 7 | sourceOut: string; |
| 8 | recordIn: string; |
| 9 | recordOut: string; |
| 10 | } |
| 11 | |
| 12 | export default function parseCmx3600(edlContent: string) { |
| 13 | const [firstLine, ...lines] = edlContent.split('\n'); |
nothing calls this directly
no outgoing calls
no test coverage detected