├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ └── build.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── swift-daw-file-tools.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── DAWFileTools │ ├── Cubase │ ├── Cubase.swift │ └── TrackArchive │ │ ├── Conversion │ │ ├── TrackArchive Converting DAWMarkers.swift │ │ └── TrackArchive Extract DAWMarkers.swift │ │ ├── Errors │ │ ├── TrackArchive EncodeError.swift │ │ └── TrackArchive ParseError.swift │ │ ├── Messages │ │ ├── TrackArchive EncodeMessage.swift │ │ └── TrackArchive ParseMessage.swift │ │ ├── Protocols │ │ ├── CubaseTrackArchiveMarker.swift │ │ └── CubaseTrackArchiveTrack.swift │ │ ├── TrackArchive AnyMarker.swift │ │ ├── TrackArchive AnyTrack.swift │ │ ├── TrackArchive CycleMarker.swift │ │ ├── TrackArchive Helpers.swift │ │ ├── TrackArchive Init.swift │ │ ├── TrackArchive Main.swift │ │ ├── TrackArchive Marker.swift │ │ ├── TrackArchive MarkerTrack.swift │ │ ├── TrackArchive OrphanTrack.swift │ │ ├── TrackArchive Parse.swift │ │ ├── TrackArchive TempoTrack.swift │ │ ├── TrackArchive TimeType.swift │ │ ├── TrackArchive TrackTimeDomain.swift │ │ ├── TrackArchive TrackType.swift │ │ ├── TrackArchive xmlString.swift │ │ ├── TrackArchive+Static.swift │ │ └── TrackArchive.swift │ ├── DAW Agnostic Types │ ├── DAWMarker Comparable.swift │ ├── DAWMarker Conversions.swift │ ├── DAWMarker Storage Value.swift │ ├── DAWMarker Storage.swift │ ├── DAWMarker.swift │ ├── DAWMarkerTrack.swift │ └── DAWTrackType.swift │ ├── FinalCutPro │ ├── FCPXML │ │ ├── Context │ │ │ ├── FCPXML ElementContext Items.swift │ │ │ ├── FCPXML ElementContext Tools.swift │ │ │ ├── FCPXML ElementContext.swift │ │ │ └── FCPXML FrameRateSource.swift │ │ ├── Element Types │ │ │ ├── ElementModelType │ │ │ │ ├── FCPXML AnyElementModelType Static.swift │ │ │ │ ├── FCPXML AnyElementModelType.swift │ │ │ │ ├── FCPXML ElementModelType XML.swift │ │ │ │ ├── FCPXML ElementModelType.swift │ │ │ │ ├── FCPXMLElementModelTypeProtocol Static.swift │ │ │ │ └── FCPXMLElementModelTypeProtocol.swift │ │ │ └── ElementType │ │ │ │ ├── FCPXML ElementType XML.swift │ │ │ │ └── FCPXML ElementType.swift │ │ ├── Errors │ │ │ └── FCPXML ParseError.swift │ │ ├── Extraction │ │ │ ├── FCPXML Extract.swift │ │ │ ├── FCPXML ExtractableChildren.swift │ │ │ ├── FCPXML ExtractedElement.swift │ │ │ ├── FCPXML Extraction.swift │ │ │ ├── FCPXML ExtractionScope.swift │ │ │ ├── FCPXMLExtractedElement.swift │ │ │ ├── FCPXMLExtractedModelElement.swift │ │ │ └── Presets │ │ │ │ ├── FCPXML CaptionsExtractionPreset.swift │ │ │ │ ├── FCPXML FrameDataPreset.swift │ │ │ │ ├── FCPXML MarkersExtractionPreset.swift │ │ │ │ ├── FCPXML RolesExtractionPreset.swift │ │ │ │ └── FCPXMLExtractionPreset.swift │ │ ├── FCPXML Properties.swift │ │ ├── FCPXML init.swift │ │ ├── FCPXML.swift │ │ ├── Model │ │ │ ├── Common │ │ │ │ ├── Attributes │ │ │ │ │ ├── FCPXML AudioLayout.swift │ │ │ │ │ ├── FCPXML AudioRate.swift │ │ │ │ │ ├── FCPXML ClipSourceEnable.swift │ │ │ │ │ ├── FCPXML FrameSampling.swift │ │ │ │ │ └── FCPXML TimecodeFormat.swift │ │ │ │ └── Elements │ │ │ │ │ ├── FCPXML AudioChannelSource.swift │ │ │ │ │ ├── FCPXML AudioRoleSource.swift │ │ │ │ │ ├── FCPXML ConformRate.swift │ │ │ │ │ ├── FCPXML MediaRep.swift │ │ │ │ │ ├── FCPXML Metadata Metadatum.swift │ │ │ │ │ ├── FCPXML Metadata.swift │ │ │ │ │ ├── FCPXML Text.swift │ │ │ │ │ ├── FCPXML TimeMap TimePoint.swift │ │ │ │ │ └── FCPXML TimeMap.swift │ │ │ ├── FCPXML Root Version.swift │ │ │ ├── FCPXML Root.swift │ │ │ ├── Meta │ │ │ │ └── AnyTimeline │ │ │ │ │ └── FCPXML AnyTimeline.swift │ │ │ ├── Protocols │ │ │ │ ├── FCPXMLAttribute.swift │ │ │ │ ├── FCPXMLElement Extensions.swift │ │ │ │ ├── FCPXMLElement.swift │ │ │ │ ├── Single Attributes │ │ │ │ │ ├── FCPXMLElementDuration.swift │ │ │ │ │ ├── FCPXMLElementFrameSampling.swift │ │ │ │ │ ├── FCPXMLElementModDate.swift │ │ │ │ │ ├── FCPXMLElementOffset.swift │ │ │ │ │ ├── FCPXMLElementStart.swift │ │ │ │ │ ├── FCPXMLElementTCFormat.swift │ │ │ │ │ └── FCPXMLElementTCStart.swift │ │ │ │ ├── Single Children │ │ │ │ │ ├── FCPXMLElementAudioChannelSourceChildren.swift │ │ │ │ │ ├── FCPXMLElementAudioRoleSourceChildren.swift │ │ │ │ │ ├── FCPXMLElementBookmarkChild.swift │ │ │ │ │ ├── FCPXMLElementMetadataChild.swift │ │ │ │ │ ├── FCPXMLElementNoteChild.swift │ │ │ │ │ ├── FCPXMLElementTextChildren.swift │ │ │ │ │ └── FCPXMLElementTextStyleDefinitionChildren.swift │ │ │ │ └── Story Elements │ │ │ │ │ ├── FCPXMLElementAnchorableAttributes.swift │ │ │ │ │ ├── FCPXMLElementAudioStartAndDuration.swift │ │ │ │ │ ├── FCPXMLElementClipAttributes.swift │ │ │ │ │ ├── FCPXMLElementClipAttributesOptionalDuration.swift │ │ │ │ │ ├── FCPXMLElementMediaAttributes.swift │ │ │ │ │ ├── FCPXMLElementMetaTimeline.swift │ │ │ │ │ └── FCPXMLElementTimingParams.swift │ │ │ ├── Resources │ │ │ │ ├── FCPXML Asset.swift │ │ │ │ ├── FCPXML Effect.swift │ │ │ │ ├── FCPXML Format.swift │ │ │ │ ├── FCPXML Locator.swift │ │ │ │ ├── FCPXML Media Multicam Angle.swift │ │ │ │ ├── FCPXML Media Multicam.swift │ │ │ │ ├── FCPXML Media.swift │ │ │ │ ├── FCPXML ObjectTracker TrackingShape.swift │ │ │ │ └── FCPXML ObjectTracker.swift │ │ │ ├── Roles │ │ │ │ ├── FCPXML AudioRole.swift │ │ │ │ ├── FCPXML CaptionRole.swift │ │ │ │ ├── FCPXML VideoRole.swift │ │ │ │ └── Meta │ │ │ │ │ ├── FCPXML AncestorRoles.swift │ │ │ │ │ ├── FCPXML AnyInterpolatedRole.swift │ │ │ │ │ ├── FCPXML AnyRole.swift │ │ │ │ │ ├── FCPXML RoleType.swift │ │ │ │ │ ├── FCPXMLCollapsibleRole.swift │ │ │ │ │ └── FCPXMLRole.swift │ │ │ ├── Story │ │ │ │ ├── Annotations │ │ │ │ │ ├── FCPXML Caption.swift │ │ │ │ │ ├── FCPXML Keyword.swift │ │ │ │ │ └── FCPXML Marker.swift │ │ │ │ ├── Clips │ │ │ │ │ ├── FCPXML AssetClip.swift │ │ │ │ │ ├── FCPXML Audio.swift │ │ │ │ │ ├── FCPXML Audition.swift │ │ │ │ │ ├── FCPXML Clip.swift │ │ │ │ │ ├── FCPXML Gap.swift │ │ │ │ │ ├── FCPXML RefClip.swift │ │ │ │ │ ├── FCPXML Title.swift │ │ │ │ │ ├── FCPXML Transition.swift │ │ │ │ │ ├── FCPXML Video.swift │ │ │ │ │ ├── MCClip │ │ │ │ │ │ ├── FCPXML MCClip.swift │ │ │ │ │ │ └── FCPXML MulticamSource.swift │ │ │ │ │ └── SyncClip │ │ │ │ │ │ ├── FCPXML SyncClip.swift │ │ │ │ │ │ └── FCPXML SyncSource.swift │ │ │ │ ├── FCPXML Sequence.swift │ │ │ │ └── FCPXML Spine.swift │ │ │ └── Structure │ │ │ │ ├── FCPXML Event.swift │ │ │ │ ├── FCPXML Library.swift │ │ │ │ └── FCPXML Project.swift │ │ ├── Occlusion │ │ │ ├── FCPXML Element Occlusion.swift │ │ │ └── FCPXML ElementOcclusion.swift │ │ ├── Utilities │ │ │ └── FCPXML Time Utilities.swift │ │ └── XML │ │ │ ├── FCPXML Attributes.swift │ │ │ ├── FCPXML Clip Parsing.swift │ │ │ ├── FCPXML Elements Parsing.swift │ │ │ ├── FCPXML Metadata Parsing.swift │ │ │ ├── FCPXML Resources Parsing.swift │ │ │ ├── FCPXML Roles Parsing.swift │ │ │ ├── FCPXML Root Parsing.swift │ │ │ ├── FCPXML Time and Frame Rate Parsing.swift │ │ │ └── XMLParsableAttributesKey.swift │ └── FinalCutPro.swift │ ├── MIDIFile │ ├── Conversion │ │ └── MIDIFile Converting DAWMarkers.swift │ └── Errors │ │ └── MIDIFile BuildError.swift │ ├── ProTools │ ├── ProTools.swift │ └── SessionInfo │ │ ├── Conversion │ │ └── SessionInfo Extract DAWMarkers.swift │ │ ├── Errors │ │ └── SessionInfo ParseError.swift │ │ ├── Messages │ │ └── SessionInfo ParseMessage.swift │ │ ├── Parse │ │ ├── SessionInfo Parse Sections.swift │ │ └── SessionInfo Parse.swift │ │ ├── SessionInfo Clip.swift │ │ ├── SessionInfo File.swift │ │ ├── SessionInfo Init.swift │ │ ├── SessionInfo Main.swift │ │ ├── SessionInfo Marker.swift │ │ ├── SessionInfo OrphanData.swift │ │ ├── SessionInfo Plugin.swift │ │ ├── SessionInfo TimeValue.swift │ │ ├── SessionInfo TimeValueFormat.swift │ │ ├── SessionInfo Track.swift │ │ ├── SessionInfo Versions.swift │ │ └── SessionInfo.swift │ ├── SRT │ ├── Errors │ │ ├── SRTFile DecodeError.swift │ │ └── SRTFile EncodeError.swift │ ├── SRTFile Subtitle TextCoordinates.swift │ ├── SRTFile Subtitle.swift │ ├── SRTFile Time Utilities.swift │ └── SRTFile.swift │ └── Utilities │ ├── Utilities.swift │ └── XML Utilities.swift └── Tests └── DAWFileToolsTests ├── Cubase ├── Cubase TrackArchive BasicMarkers.swift ├── Cubase TrackArchive Helper Tests.swift ├── Cubase TrackArchive MusicalAndLinearTest.swift ├── Cubase TrackArchive RoundingTest.swift ├── Cubase TrackArchive init converting.swift ├── Cubase TrackArchive xmlString.swift └── Resources │ └── Cubase TrackArchive XML Exports │ ├── BasicMarkers.xml │ ├── MusicalAndLinearTest.xml │ └── RoundingTest.xml ├── DAW Agnostic Types ├── DAWMarker Codable Tests.swift ├── DAWMarker Comparable Tests.swift └── DAWMarker Conversions Tests.swift ├── DAWFileToolsTests Constants.swift ├── FinalCutPro ├── FCPXMLTestCase.swift ├── File Tests │ ├── FinalCutPro FCPXML 23.98.swift │ ├── FinalCutPro FCPXML 24.swift │ ├── FinalCutPro FCPXML 24With25Media.swift │ ├── FinalCutPro FCPXML 25i.swift │ ├── FinalCutPro FCPXML 29.97.swift │ ├── FinalCutPro FCPXML 29.97d.swift │ ├── FinalCutPro FCPXML 30.swift │ ├── FinalCutPro FCPXML 50.swift │ ├── FinalCutPro FCPXML 59.94.swift │ ├── FinalCutPro FCPXML 60.swift │ ├── FinalCutPro FCPXML Annotations.swift │ ├── FinalCutPro FCPXML AudioOnly.swift │ ├── FinalCutPro FCPXML AuditionMarkers.swift │ ├── FinalCutPro FCPXML AuditionMarkers2.swift │ ├── FinalCutPro FCPXML AuditionMarkers3.swift │ ├── FinalCutPro FCPXML BasicMarkers.swift │ ├── FinalCutPro FCPXML BasicMarkers_1HourProjectStart.swift │ ├── FinalCutPro FCPXML ClipMetadata.swift │ ├── FinalCutPro FCPXML Complex.swift │ ├── FinalCutPro FCPXML CompoundClips.swift │ ├── FinalCutPro FCPXML DisabledClips.swift │ ├── FinalCutPro FCPXML Keywords.swift │ ├── FinalCutPro FCPXML MulticamMarkers.swift │ ├── FinalCutPro FCPXML MulticamMarkers2.swift │ ├── FinalCutPro FCPXML Occlusion.swift │ ├── FinalCutPro FCPXML Occlusion2.swift │ ├── FinalCutPro FCPXML Occlusion3.swift │ ├── FinalCutPro FCPXML RolesList.swift │ ├── FinalCutPro FCPXML StandaloneAssetClip.swift │ ├── FinalCutPro FCPXML StandaloneLibraryEventClip.swift │ ├── FinalCutPro FCPXML StandaloneRefClip.swift │ ├── FinalCutPro FCPXML SyncClip.swift │ ├── FinalCutPro FCPXML SyncClipRoles.swift │ ├── FinalCutPro FCPXML SyncClipRoles2.swift │ ├── FinalCutPro FCPXML TitlesRoles.swift │ ├── FinalCutPro FCPXML TransitionMarkers1.swift │ ├── FinalCutPro FCPXML TransitionMarkers2.swift │ └── FinalCutPro FCPXML TwoClipsMarkers.swift ├── Logic and Parsing │ ├── FinalCutPro FCPXML Calculations.swift │ ├── FinalCutPro FCPXML Element Init Tests.swift │ ├── FinalCutPro FCPXML Format Info.swift │ ├── FinalCutPro FCPXML Frame Data Tests.swift │ ├── FinalCutPro FCPXML Library Tests.swift │ ├── FinalCutPro FCPXML Roles Parsing.swift │ ├── FinalCutPro FCPXML Root Version Tests.swift │ └── FinalCutPro FCPXML Structure.swift └── Resources │ └── FCPXML Exports │ ├── 23.98.fcpxml │ ├── 24.fcpxml │ ├── 24With25Media.fcpxml │ ├── 25i.fcpxml │ ├── 29.97.fcpxml │ ├── 29.97d.fcpxml │ ├── 30.fcpxml │ ├── 50.fcpxml │ ├── 59.94.fcpxml │ ├── 60.fcpxml │ ├── Annotations.fcpxml │ ├── AudioOnly.fcpxml │ ├── AuditionMarkers.fcpxml │ ├── AuditionMarkers2.fcpxml │ ├── AuditionMarkers3.fcpxml │ ├── BasicMarkers.fcpxml │ ├── BasicMarkers_1HourProjectStart.fcpxml │ ├── ClipMetadata.fcpxml │ ├── Complex.fcpxml │ ├── CompoundClips.fcpxml │ ├── DisabledClips.fcpxml │ ├── Keywords.fcpxml │ ├── MulticamMarkers.fcpxml │ ├── MulticamMarkers2.fcpxml │ ├── Occlusion.fcpxml │ ├── Occlusion2.fcpxml │ ├── Occlusion3.fcpxml │ ├── RolesList.fcpxml │ ├── StandaloneAssetClip.fcpxml │ ├── StandaloneLibraryEventClip.fcpxml │ ├── StandaloneRefClip.fcpxml │ ├── Structure.fcpxml │ ├── SyncClip.fcpxml │ ├── SyncClipRoles.fcpxml │ ├── SyncClipRoles2.fcpxml │ ├── TitlesRoles.fcpxml │ ├── TransitionMarkers1.fcpxml │ ├── TransitionMarkers2.fcpxml │ └── TwoClipsMarkers.fcpxml ├── ProTools ├── ProTools SessionText 2023.12 Markers.swift ├── ProTools SessionText EmptySession.swift ├── ProTools SessionText ExtendedChars.swift ├── ProTools SessionText FPPFinal.swift ├── ProTools SessionText NewLinesAndTabs.swift ├── ProTools SessionText OneOfEverything.swift ├── ProTools SessionText OrphanData.swift ├── ProTools SessionText Plugins.swift ├── ProTools SessionText SimpleTest.swift ├── ProTools SessionText Time Formats BarsBeats.swift ├── ProTools SessionText TracksOnly.swift ├── Resources │ └── PT Session Text Exports │ │ ├── SessionText_EmptySession_23-976fps_DefaultExportOptions_PT2020.3.txt │ │ ├── SessionText_ExtendedChars_TextEditFormat_PT2023.3.txt │ │ ├── SessionText_ExtendedChars_UTF8Format_PT2023.3.txt │ │ ├── SessionText_FPPFinal_23-976fps_DefaultExportOptions_PT2020.3.txt │ │ ├── SessionText_MarkerRulersAndTrackMarkers_PT2023.12.txt │ │ ├── SessionText_NewLinesAndTabs_DefaultExportOptions_PT2023.6.txt │ │ ├── SessionText_OneOfEverything_23-976fps_DefaultExportOptions_PT2020.3.txt │ │ ├── SessionText_Plugins_23-976fps_DefaultExportOptions_PT2020.3.txt │ │ ├── SessionText_SimpleTest_23-976fps_DefaultExportOptions_PT2020.3.txt │ │ ├── SessionText_TimeFormats_BarsBeats_PT2022.9.txt │ │ ├── SessionText_TimeFormats_BarsBeats_ShowSubframes_PT2022.9.txt │ │ ├── SessionText_TimeFormats_FeetFrames_PT2022.9.txt │ │ ├── SessionText_TimeFormats_FeetFrames_ShowSubframes_PT2022.9.txt │ │ ├── SessionText_TimeFormats_MinSecs_PT2022.9.txt │ │ ├── SessionText_TimeFormats_MinSecs_ShowSubframes_PT2022.9.txt │ │ ├── SessionText_TimeFormats_Samples_PT2022.9.txt │ │ ├── SessionText_TimeFormats_Samples_ShowSubframes_PT2022.9.txt │ │ ├── SessionText_TimeFormats_Timecode_PT2022.9.txt │ │ ├── SessionText_TimeFormats_Timecode_ShowSubframes_PT2022.9.txt │ │ ├── SessionText_TracksOnly_OnlyTrackEDLs_PT2023.6.txt │ │ └── SessionText_UnrecognizedSection_23-976fps_DefaultExportOptions_PT2020.3.txt ├── TimeValue Tests.swift └── TimeValueFormat Tests.swift └── SRT ├── Resources └── SRT Files │ └── SRT-BOM-CRLF-ExtendedChars.srt ├── SRTFile Subtitle Tests.swift ├── SRTFile Tests.swift ├── SRTFile Time Utilities Tests.swift └── SRTFile utf8bom-extended-chars Tests.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.8 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/swift-daw-file-tools.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/swift-daw-file-tools.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/Cubase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/Cubase.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Conversion/TrackArchive Converting DAWMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Conversion/TrackArchive Converting DAWMarkers.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Conversion/TrackArchive Extract DAWMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Conversion/TrackArchive Extract DAWMarkers.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Errors/TrackArchive EncodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Errors/TrackArchive EncodeError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Errors/TrackArchive ParseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Errors/TrackArchive ParseError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Messages/TrackArchive EncodeMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Messages/TrackArchive EncodeMessage.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Messages/TrackArchive ParseMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Messages/TrackArchive ParseMessage.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Protocols/CubaseTrackArchiveMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Protocols/CubaseTrackArchiveMarker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/Protocols/CubaseTrackArchiveTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/Protocols/CubaseTrackArchiveTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive AnyMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive AnyMarker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive AnyTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive AnyTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive CycleMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive CycleMarker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Helpers.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Init.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Main.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Marker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Marker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive MarkerTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive MarkerTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive OrphanTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive OrphanTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Parse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive Parse.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TempoTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TempoTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TimeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TimeType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TrackTimeDomain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TrackTimeDomain.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TrackType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive TrackType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive xmlString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive xmlString.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive+Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive+Static.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Cubase/TrackArchive/TrackArchive.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Comparable.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Conversions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Conversions.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Storage Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Storage Value.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarker Storage.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWMarkerTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWMarkerTrack.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/DAW Agnostic Types/DAWTrackType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/DAW Agnostic Types/DAWTrackType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext Items.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext Items.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext Tools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext Tools.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML ElementContext.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML FrameRateSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Context/FCPXML FrameRateSource.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML AnyElementModelType Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML AnyElementModelType Static.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML AnyElementModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML AnyElementModelType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML ElementModelType XML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML ElementModelType XML.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML ElementModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXML ElementModelType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXMLElementModelTypeProtocol Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXMLElementModelTypeProtocol Static.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXMLElementModelTypeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementModelType/FCPXMLElementModelTypeProtocol.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementType/FCPXML ElementType XML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementType/FCPXML ElementType XML.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementType/FCPXML ElementType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Element Types/ElementType/FCPXML ElementType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Errors/FCPXML ParseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Errors/FCPXML ParseError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML Extract.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML Extract.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractableChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractableChildren.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractedElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractedElement.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML Extraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML Extraction.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractionScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXML ExtractionScope.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXMLExtractedElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXMLExtractedElement.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXMLExtractedModelElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/FCPXMLExtractedModelElement.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML CaptionsExtractionPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML CaptionsExtractionPreset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML FrameDataPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML FrameDataPreset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML MarkersExtractionPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML MarkersExtractionPreset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML RolesExtractionPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXML RolesExtractionPreset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXMLExtractionPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Extraction/Presets/FCPXMLExtractionPreset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML Properties.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML init.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/FCPXML.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML AudioLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML AudioLayout.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML AudioRate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML AudioRate.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML ClipSourceEnable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML ClipSourceEnable.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML FrameSampling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML FrameSampling.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML TimecodeFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Attributes/FCPXML TimecodeFormat.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML AudioChannelSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML AudioChannelSource.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML AudioRoleSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML AudioRoleSource.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML ConformRate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML ConformRate.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML MediaRep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML MediaRep.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Metadata Metadatum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Metadata Metadatum.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Metadata.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML Text.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML TimeMap TimePoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML TimeMap TimePoint.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML TimeMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Common/Elements/FCPXML TimeMap.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/FCPXML Root Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/FCPXML Root Version.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/FCPXML Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/FCPXML Root.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Meta/AnyTimeline/FCPXML AnyTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Meta/AnyTimeline/FCPXML AnyTimeline.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLAttribute.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLElement Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLElement Extensions.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/FCPXMLElement.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementDuration.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementFrameSampling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementFrameSampling.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementModDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementModDate.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementOffset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementStart.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementTCFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementTCFormat.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementTCStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Attributes/FCPXMLElementTCStart.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementAudioChannelSourceChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementAudioChannelSourceChildren.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementAudioRoleSourceChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementAudioRoleSourceChildren.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementBookmarkChild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementBookmarkChild.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementMetadataChild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementMetadataChild.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementNoteChild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementNoteChild.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementTextChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementTextChildren.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementTextStyleDefinitionChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Single Children/FCPXMLElementTextStyleDefinitionChildren.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementAnchorableAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementAnchorableAttributes.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementAudioStartAndDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementAudioStartAndDuration.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementClipAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementClipAttributes.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementClipAttributesOptionalDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementClipAttributesOptionalDuration.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementMediaAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementMediaAttributes.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementMetaTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementMetaTimeline.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementTimingParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Protocols/Story Elements/FCPXMLElementTimingParams.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Asset.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Effect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Effect.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Format.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Locator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Locator.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media Multicam Angle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media Multicam Angle.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media Multicam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media Multicam.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML Media.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML ObjectTracker TrackingShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML ObjectTracker TrackingShape.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML ObjectTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Resources/FCPXML ObjectTracker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML AudioRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML AudioRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML CaptionRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML CaptionRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML VideoRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/FCPXML VideoRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AncestorRoles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AncestorRoles.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AnyInterpolatedRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AnyInterpolatedRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AnyRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML AnyRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML RoleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXML RoleType.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXMLCollapsibleRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXMLCollapsibleRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXMLRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Roles/Meta/FCPXMLRole.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Caption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Caption.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Keyword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Keyword.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Marker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Annotations/FCPXML Marker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML AssetClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML AssetClip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Audio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Audio.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Audition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Audition.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Clip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Clip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Gap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Gap.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML RefClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML RefClip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Title.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Title.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Transition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Transition.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/FCPXML Video.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/MCClip/FCPXML MCClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/MCClip/FCPXML MCClip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/MCClip/FCPXML MulticamSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/MCClip/FCPXML MulticamSource.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/SyncClip/FCPXML SyncClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/SyncClip/FCPXML SyncClip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/SyncClip/FCPXML SyncSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/Clips/SyncClip/FCPXML SyncSource.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/FCPXML Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/FCPXML Sequence.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/FCPXML Spine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Story/FCPXML Spine.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Event.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Library.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Library.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Model/Structure/FCPXML Project.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Occlusion/FCPXML Element Occlusion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Occlusion/FCPXML Element Occlusion.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Occlusion/FCPXML ElementOcclusion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Occlusion/FCPXML ElementOcclusion.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/Utilities/FCPXML Time Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/Utilities/FCPXML Time Utilities.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Attributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Attributes.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Clip Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Clip Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Elements Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Elements Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Metadata Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Metadata Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Resources Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Resources Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Roles Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Roles Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Root Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Root Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Time and Frame Rate Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/FCPXML Time and Frame Rate Parsing.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FCPXML/XML/XMLParsableAttributesKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FCPXML/XML/XMLParsableAttributesKey.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/FinalCutPro/FinalCutPro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/FinalCutPro/FinalCutPro.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/MIDIFile/Conversion/MIDIFile Converting DAWMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/MIDIFile/Conversion/MIDIFile Converting DAWMarkers.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/MIDIFile/Errors/MIDIFile BuildError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/MIDIFile/Errors/MIDIFile BuildError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/ProTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/ProTools.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/Conversion/SessionInfo Extract DAWMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/Conversion/SessionInfo Extract DAWMarkers.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/Errors/SessionInfo ParseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/Errors/SessionInfo ParseError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/Messages/SessionInfo ParseMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/Messages/SessionInfo ParseMessage.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/Parse/SessionInfo Parse Sections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/Parse/SessionInfo Parse Sections.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/Parse/SessionInfo Parse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/Parse/SessionInfo Parse.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Clip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Clip.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo File.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Init.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Main.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Marker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Marker.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo OrphanData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo OrphanData.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Plugin.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo TimeValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo TimeValue.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo TimeValueFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo TimeValueFormat.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Track.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Track.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Versions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo Versions.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/ProTools/SessionInfo/SessionInfo.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/Errors/SRTFile DecodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/Errors/SRTFile DecodeError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/Errors/SRTFile EncodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/Errors/SRTFile EncodeError.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/SRTFile Subtitle TextCoordinates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/SRTFile Subtitle TextCoordinates.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/SRTFile Subtitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/SRTFile Subtitle.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/SRTFile Time Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/SRTFile Time Utilities.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/SRT/SRTFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/SRT/SRTFile.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Utilities/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Utilities/Utilities.swift -------------------------------------------------------------------------------- /Sources/DAWFileTools/Utilities/XML Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Sources/DAWFileTools/Utilities/XML Utilities.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive BasicMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive BasicMarkers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive Helper Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive Helper Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive MusicalAndLinearTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive MusicalAndLinearTest.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive RoundingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive RoundingTest.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive init converting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive init converting.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive xmlString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Cubase TrackArchive xmlString.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/BasicMarkers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/BasicMarkers.xml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/MusicalAndLinearTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/MusicalAndLinearTest.xml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/RoundingTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/Cubase/Resources/Cubase TrackArchive XML Exports/RoundingTest.xml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Codable Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Codable Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Comparable Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Comparable Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Conversions Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/DAW Agnostic Types/DAWMarker Conversions Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/DAWFileToolsTests Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/DAWFileToolsTests Constants.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/FCPXMLTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/FCPXMLTestCase.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 23.98.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 23.98.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 24.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 24.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 24With25Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 24With25Media.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 25i.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 25i.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 29.97.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 29.97.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 29.97d.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 29.97d.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 30.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 30.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 50.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 50.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 59.94.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 59.94.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 60.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML 60.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Annotations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Annotations.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AudioOnly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AudioOnly.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers2.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML AuditionMarkers3.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML BasicMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML BasicMarkers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML BasicMarkers_1HourProjectStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML BasicMarkers_1HourProjectStart.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML ClipMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML ClipMetadata.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Complex.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML CompoundClips.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML CompoundClips.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML DisabledClips.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML DisabledClips.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Keywords.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Keywords.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML MulticamMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML MulticamMarkers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML MulticamMarkers2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML MulticamMarkers2.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion2.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML Occlusion3.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML RolesList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML RolesList.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneAssetClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneAssetClip.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneLibraryEventClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneLibraryEventClip.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneRefClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML StandaloneRefClip.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClip.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClipRoles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClipRoles.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClipRoles2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML SyncClipRoles2.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TitlesRoles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TitlesRoles.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TransitionMarkers1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TransitionMarkers1.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TransitionMarkers2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TransitionMarkers2.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TwoClipsMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/File Tests/FinalCutPro FCPXML TwoClipsMarkers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Calculations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Calculations.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Element Init Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Element Init Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Format Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Format Info.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Frame Data Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Frame Data Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Library Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Library Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Roles Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Roles Parsing.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Root Version Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Root Version Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Structure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Logic and Parsing/FinalCutPro FCPXML Structure.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/23.98.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/23.98.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/24.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/24.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/24With25Media.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/24With25Media.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/25i.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/25i.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/29.97.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/29.97.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/29.97d.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/29.97d.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/30.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/30.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/50.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/50.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/59.94.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/59.94.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/60.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/60.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Annotations.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Annotations.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AudioOnly.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AudioOnly.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers2.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers2.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers3.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/AuditionMarkers3.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/BasicMarkers.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/BasicMarkers.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/BasicMarkers_1HourProjectStart.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/BasicMarkers_1HourProjectStart.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/ClipMetadata.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/ClipMetadata.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Complex.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Complex.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/CompoundClips.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/CompoundClips.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/DisabledClips.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/DisabledClips.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Keywords.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Keywords.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/MulticamMarkers.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/MulticamMarkers.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/MulticamMarkers2.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/MulticamMarkers2.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion2.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion2.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion3.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Occlusion3.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/RolesList.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/RolesList.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneAssetClip.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneAssetClip.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneLibraryEventClip.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneLibraryEventClip.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneRefClip.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/StandaloneRefClip.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Structure.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/Structure.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClip.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClip.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClipRoles.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClipRoles.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClipRoles2.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/SyncClipRoles2.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TitlesRoles.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TitlesRoles.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TransitionMarkers1.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TransitionMarkers1.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TransitionMarkers2.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TransitionMarkers2.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TwoClipsMarkers.fcpxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/FinalCutPro/Resources/FCPXML Exports/TwoClipsMarkers.fcpxml -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText 2023.12 Markers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText 2023.12 Markers.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText EmptySession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText EmptySession.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText ExtendedChars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText ExtendedChars.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText FPPFinal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText FPPFinal.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText NewLinesAndTabs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText NewLinesAndTabs.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText OneOfEverything.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText OneOfEverything.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText OrphanData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText OrphanData.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText Plugins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText Plugins.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText SimpleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText SimpleTest.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText Time Formats BarsBeats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText Time Formats BarsBeats.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/ProTools SessionText TracksOnly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/ProTools SessionText TracksOnly.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_EmptySession_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_EmptySession_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_ExtendedChars_TextEditFormat_PT2023.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_ExtendedChars_TextEditFormat_PT2023.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_ExtendedChars_UTF8Format_PT2023.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_ExtendedChars_UTF8Format_PT2023.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_FPPFinal_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_FPPFinal_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_MarkerRulersAndTrackMarkers_PT2023.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_MarkerRulersAndTrackMarkers_PT2023.12.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_NewLinesAndTabs_DefaultExportOptions_PT2023.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_NewLinesAndTabs_DefaultExportOptions_PT2023.6.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_OneOfEverything_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_OneOfEverything_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_Plugins_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_Plugins_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_SimpleTest_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_SimpleTest_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_BarsBeats_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_BarsBeats_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_BarsBeats_ShowSubframes_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_BarsBeats_ShowSubframes_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_FeetFrames_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_FeetFrames_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_FeetFrames_ShowSubframes_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_FeetFrames_ShowSubframes_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_MinSecs_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_MinSecs_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_MinSecs_ShowSubframes_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_MinSecs_ShowSubframes_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Samples_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Samples_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Samples_ShowSubframes_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Samples_ShowSubframes_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Timecode_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Timecode_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Timecode_ShowSubframes_PT2022.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TimeFormats_Timecode_ShowSubframes_PT2022.9.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TracksOnly_OnlyTrackEDLs_PT2023.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_TracksOnly_OnlyTrackEDLs_PT2023.6.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_UnrecognizedSection_23-976fps_DefaultExportOptions_PT2020.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/Resources/PT Session Text Exports/SessionText_UnrecognizedSection_23-976fps_DefaultExportOptions_PT2020.3.txt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/TimeValue Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/TimeValue Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/ProTools/TimeValueFormat Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/ProTools/TimeValueFormat Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/SRT/Resources/SRT Files/SRT-BOM-CRLF-ExtendedChars.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/SRT/Resources/SRT Files/SRT-BOM-CRLF-ExtendedChars.srt -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/SRT/SRTFile Subtitle Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/SRT/SRTFile Subtitle Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/SRT/SRTFile Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/SRT/SRTFile Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/SRT/SRTFile Time Utilities Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/SRT/SRTFile Time Utilities Tests.swift -------------------------------------------------------------------------------- /Tests/DAWFileToolsTests/SRT/SRTFile utf8bom-extended-chars Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchetect/swift-daw-file-tools/HEAD/Tests/DAWFileToolsTests/SRT/SRTFile utf8bom-extended-chars Tests.swift --------------------------------------------------------------------------------