├── .gitignore ├── AppleScripts ├── Applications │ ├── Pro Tools │ │ ├── !!! TEMPLATE Render & Fades.applescript │ │ ├── Auto Preview.applescript │ │ ├── Auto Punch Preview.applescript │ │ ├── Auto Suspend.applescript │ │ ├── Auto Write to Selection.applescript │ │ ├── Auto-Align Detect.applescript │ │ ├── Auto-Align Nudge.applescript │ │ ├── Auto-Align no Fades.applescript │ │ ├── Auto-Align.applescript │ │ ├── Backup to playlist.applescript │ │ ├── Clip Gain Line.applescript │ │ ├── Color Palette.applescript │ │ ├── Copy All Automation.applescript │ │ ├── Create Clip Group and Rename with Reason.applescript │ │ ├── Create Clip Group and Rename.applescript │ │ ├── Cut & Fades.applescript │ │ ├── Cut on Memory Locations.applescript │ │ ├── Group & Down.scpt │ │ ├── Inserts A-E.applescript │ │ ├── MAutoAlign.applescript │ │ ├── Main Counter Samples.applescript │ │ ├── Main Counter TC.applescript │ │ ├── Markers.scpt │ │ ├── Mouth De-Click.applescript │ │ ├── Next Clip.applescript │ │ ├── RX De-crackle.applescript │ │ ├── RX Mouth De-click.applescript │ │ ├── ReVoice Capture.applescript │ │ ├── Rename – Done.applescript │ │ ├── Rename – Error.applescript │ │ ├── Rename – Warning.applescript │ │ ├── Render & Fades.applescript │ │ ├── Render.applescript │ │ ├── Restore Clip Gain Info.applescript │ │ ├── Send to RX.applescript │ │ ├── Solo-Mute Track.applescript │ │ ├── Strip Silence.applescript │ │ ├── Switch Grabber Tool.applescript │ │ ├── Switch Trim Tool.applescript │ │ ├── Timecode Jumps.scpt │ │ ├── Toggle Strip Silence & Clip List.applescript │ │ ├── Track Renamer.applescript │ │ ├── Tracks I:O.applescript │ │ └── VocALign Capture.applescript │ ├── iZotope RX 6 │ │ └── Back to Pro Tools.applescript │ ├── iZotope RX 7 │ │ ├── Back to Pro Tools.applescript │ │ └── Toggle Composite View.applescript │ └── iZotope RX 8 │ │ ├── Back to Pro Tools.applescript │ │ ├── Toggle Composite View.applescript │ │ └── Toggle Spectral Repair Direction.applescript └── README.md ├── Correct edl ├── Correct EDL.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── applet │ │ ├── PkgInfo │ │ └── Resources │ │ ├── Scripts │ │ ├── correct_edl.py │ │ ├── main.scpt │ │ └── replacements_dict.json │ │ ├── applet.icns │ │ ├── applet.rsrc │ │ └── description.rtfd │ │ └── TXT.rtf ├── correct_edl.py ├── edl │ ├── BLOCKBUSTER_DC_v4.1_Video.corrected.edl │ ├── BLOCKBUSTER_DC_v4.1_Video.edl │ ├── test.corrected.edl │ └── test.edl ├── make_dict.py └── replacements_dict.json ├── Filter edl tracks ├── filter_tracks.py ├── sample_edl_V_A_tracks.edl └── sample_edl_V_A_tracks.filtered.edl ├── LICENSE ├── README.md ├── Rename mixer files ├── files backup │ ├── 05-5-160929_1549.wav │ ├── 05-5-160929_1551.wav │ ├── 05-5-160929_1604.wav │ ├── 05-5-160929_1617.wav │ ├── 05-5-160929_1633.wav │ ├── 05-5-160929_1647.wav │ ├── 05-5-160929_1704.wav │ ├── 09-9-160929_1549.wav │ ├── 09-9-160929_1551.wav │ ├── 09-9-160929_1604.wav │ ├── 09-9-160929_1617.wav │ ├── 09-9-160929_1633.wav │ ├── 09-9-160929_1647.wav │ ├── 09-9-160929_1704.wav │ ├── 11-11-160929_1549.wav │ ├── 11-11-160929_1551.wav │ ├── 11-11-160929_1604.wav │ ├── 11-11-160929_1617.wav │ ├── 11-11-160929_1633.wav │ ├── 11-11-160929_1647.wav │ ├── 11-11-160929_1704.wav │ ├── 13-MALKOVICH-160929_1122.wav │ ├── 13-MALKOVICH-160929_1133.wav │ ├── 13-MALKOVICH-160929_1138.wav │ ├── 13-MALKOVICH-160929_1151.wav │ ├── 13-MALKOVICH-160929_1202.wav │ ├── 13-MALKOVICH-160929_1205.wav │ ├── 13-MALKOVICH-160929_1209.wav │ ├── 13-MALKOVICH-160929_1213.wav │ ├── 13-MALKOVICH-160929_1229.wav │ ├── 13-MALKOVICH-160929_1245.wav │ ├── 13-MALKOVICH-160929_1255.wav │ ├── 13-MALKOVICH-160929_1313.wav │ ├── 13-MALKOVICH-160929_1321.wav │ ├── 13-MALKOVICH-160929_1326.wav │ ├── 13-MALKOVICH-160929_1327.wav │ ├── 13-MALKOVICH-160929_1338.wav │ ├── 13-MALKOVICH-160929_1549.wav │ ├── 13-MALKOVICH-160929_1551.wav │ ├── 13-MALKOVICH-160929_1604.wav │ ├── 13-MALKOVICH-160929_1617.wav │ ├── 13-MALKOVICH-160929_1633.wav │ ├── 13-MALKOVICH-160929_1647.wav │ ├── 13-MALKOVICH-160929_1704.wav │ ├── 14-MIX-160929_1122.wav │ ├── 14-MIX-160929_1133.wav │ ├── 14-MIX-160929_1138.wav │ ├── 14-MIX-160929_1151.wav │ ├── 14-MIX-160929_1202.wav │ ├── 14-MIX-160929_1205.wav │ ├── 14-MIX-160929_1209.wav │ ├── 14-MIX-160929_1213.wav │ ├── 14-MIX-160929_1229.wav │ ├── 14-MIX-160929_1245.wav │ ├── 14-MIX-160929_1255.wav │ ├── 14-MIX-160929_1313.wav │ ├── 14-MIX-160929_1321.wav │ ├── 14-MIX-160929_1326.wav │ ├── 14-MIX-160929_1327.wav │ ├── 14-MIX-160929_1338.wav │ ├── 14-MIX-160929_1549.wav │ ├── 14-MIX-160929_1551.wav │ ├── 14-MIX-160929_1604.wav │ ├── 14-MIX-160929_1617.wav │ ├── 14-MIX-160929_1633.wav │ ├── 14-MIX-160929_1647.wav │ └── 14-MIX-160929_1704.wav ├── files │ ├── 05-5-160929_1549.wav │ ├── 05-5-160929_1551.wav │ ├── 05-5-160929_1604.wav │ ├── 05-5-160929_1617.wav │ ├── 05-5-160929_1633.wav │ ├── 05-5-160929_1647.wav │ ├── 05-5-160929_1704.wav │ ├── 09-9-160929_1549.wav │ ├── 09-9-160929_1551.wav │ ├── 09-9-160929_1604.wav │ ├── 09-9-160929_1617.wav │ ├── 09-9-160929_1633.wav │ ├── 09-9-160929_1647.wav │ ├── 09-9-160929_1704.wav │ ├── 11-11-160929_1549.wav │ ├── 11-11-160929_1551.wav │ ├── 11-11-160929_1604.wav │ ├── 11-11-160929_1617.wav │ ├── 11-11-160929_1633.wav │ ├── 11-11-160929_1647.wav │ ├── 11-11-160929_1704.wav │ ├── 13-MALKOVICH-160929_1122.wav │ ├── 13-MALKOVICH-160929_1133.wav │ ├── 13-MALKOVICH-160929_1138.wav │ ├── 13-MALKOVICH-160929_1151.wav │ ├── 13-MALKOVICH-160929_1202.wav │ ├── 13-MALKOVICH-160929_1205.wav │ ├── 13-MALKOVICH-160929_1209.wav │ ├── 13-MALKOVICH-160929_1213.wav │ ├── 13-MALKOVICH-160929_1229.wav │ ├── 13-MALKOVICH-160929_1245.wav │ ├── 13-MALKOVICH-160929_1255.wav │ ├── 13-MALKOVICH-160929_1313.wav │ ├── 13-MALKOVICH-160929_1321.wav │ ├── 13-MALKOVICH-160929_1326.wav │ ├── 13-MALKOVICH-160929_1327.wav │ ├── 13-MALKOVICH-160929_1338.wav │ ├── 13-MALKOVICH-160929_1549.wav │ ├── 13-MALKOVICH-160929_1551.wav │ ├── 13-MALKOVICH-160929_1604.wav │ ├── 13-MALKOVICH-160929_1617.wav │ ├── 13-MALKOVICH-160929_1633.wav │ ├── 13-MALKOVICH-160929_1647.wav │ ├── 13-MALKOVICH-160929_1704.wav │ ├── 14-MIX-160929_1122.wav │ ├── 14-MIX-160929_1133.wav │ ├── 14-MIX-160929_1138.wav │ ├── 14-MIX-160929_1151.wav │ ├── 14-MIX-160929_1202.wav │ ├── 14-MIX-160929_1205.wav │ ├── 14-MIX-160929_1209.wav │ ├── 14-MIX-160929_1213.wav │ ├── 14-MIX-160929_1229.wav │ ├── 14-MIX-160929_1245.wav │ ├── 14-MIX-160929_1255.wav │ ├── 14-MIX-160929_1313.wav │ ├── 14-MIX-160929_1321.wav │ ├── 14-MIX-160929_1326.wav │ ├── 14-MIX-160929_1327.wav │ ├── 14-MIX-160929_1338.wav │ ├── 14-MIX-160929_1549.wav │ ├── 14-MIX-160929_1551.wav │ ├── 14-MIX-160929_1604.wav │ ├── 14-MIX-160929_1617.wav │ ├── 14-MIX-160929_1633.wav │ ├── 14-MIX-160929_1647.wav │ └── 14-MIX-160929_1704.wav └── rename_mixer_files.py └── Session info to table ├── .ipynb_checkpoints └── tracks_to_table-checkpoint.py ├── binaries └── Tracks_to_Table_macOS_v2.5.zip ├── macOS app ├── Tracks to Table.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── fantopop.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── fantopop.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Tracks to Table │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── generated-table.png │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── Tracks_to_Table.entitlements │ ├── ViewController.swift │ ├── square.png │ ├── tracks_to_table.py │ └── txt.png ├── modules ├── html.py └── table.py ├── samples ├── ADR.csv ├── ADR.html └── ADR.txt └── tracks_to_table.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/!!! TEMPLATE Render & Fades.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/!!! TEMPLATE Render & Fades.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto Preview.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto Preview.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto Punch Preview.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto Punch Preview.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto Suspend.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto Suspend.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto Write to Selection.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto Write to Selection.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto-Align Detect.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto-Align Detect.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto-Align Nudge.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto-Align Nudge.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto-Align no Fades.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto-Align no Fades.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Auto-Align.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Auto-Align.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Backup to playlist.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Backup to playlist.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Clip Gain Line.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Clip Gain Line.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Color Palette.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Color Palette.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Copy All Automation.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Copy All Automation.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Create Clip Group and Rename with Reason.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Create Clip Group and Rename with Reason.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Create Clip Group and Rename.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Create Clip Group and Rename.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Cut & Fades.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Cut & Fades.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Cut on Memory Locations.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Cut on Memory Locations.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Group & Down.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Group & Down.scpt -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Inserts A-E.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Inserts A-E.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/MAutoAlign.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/MAutoAlign.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Main Counter Samples.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Main Counter Samples.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Main Counter TC.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Main Counter TC.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Markers.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Markers.scpt -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Mouth De-Click.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Mouth De-Click.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Next Clip.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Next Clip.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/RX De-crackle.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/RX De-crackle.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/RX Mouth De-click.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/RX Mouth De-click.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/ReVoice Capture.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/ReVoice Capture.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Rename – Done.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Rename – Done.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Rename – Error.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Rename – Error.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Rename – Warning.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Rename – Warning.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Render & Fades.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Render & Fades.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Render.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Render.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Restore Clip Gain Info.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Restore Clip Gain Info.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Send to RX.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Send to RX.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Solo-Mute Track.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Solo-Mute Track.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Strip Silence.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Strip Silence.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Switch Grabber Tool.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Switch Grabber Tool.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Switch Trim Tool.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Switch Trim Tool.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Timecode Jumps.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Timecode Jumps.scpt -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Toggle Strip Silence & Clip List.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Toggle Strip Silence & Clip List.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Track Renamer.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Track Renamer.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/Tracks I:O.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/Tracks I:O.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/Pro Tools/VocALign Capture.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/Pro Tools/VocALign Capture.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 6/Back to Pro Tools.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 6/Back to Pro Tools.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 7/Back to Pro Tools.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 7/Back to Pro Tools.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 7/Toggle Composite View.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 7/Toggle Composite View.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 8/Back to Pro Tools.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 8/Back to Pro Tools.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 8/Toggle Composite View.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 8/Toggle Composite View.applescript -------------------------------------------------------------------------------- /AppleScripts/Applications/iZotope RX 8/Toggle Spectral Repair Direction.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/Applications/iZotope RX 8/Toggle Spectral Repair Direction.applescript -------------------------------------------------------------------------------- /AppleScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/AppleScripts/README.md -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Info.plist -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/Scripts/correct_edl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/Scripts/correct_edl.py -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/Scripts/replacements_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/Scripts/replacements_dict.json -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /Correct edl/Correct EDL.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/Correct EDL.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Correct edl/correct_edl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/correct_edl.py -------------------------------------------------------------------------------- /Correct edl/edl/BLOCKBUSTER_DC_v4.1_Video.corrected.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/edl/BLOCKBUSTER_DC_v4.1_Video.corrected.edl -------------------------------------------------------------------------------- /Correct edl/edl/BLOCKBUSTER_DC_v4.1_Video.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/edl/BLOCKBUSTER_DC_v4.1_Video.edl -------------------------------------------------------------------------------- /Correct edl/edl/test.corrected.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/edl/test.corrected.edl -------------------------------------------------------------------------------- /Correct edl/edl/test.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/edl/test.edl -------------------------------------------------------------------------------- /Correct edl/make_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/make_dict.py -------------------------------------------------------------------------------- /Correct edl/replacements_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Correct edl/replacements_dict.json -------------------------------------------------------------------------------- /Filter edl tracks/filter_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Filter edl tracks/filter_tracks.py -------------------------------------------------------------------------------- /Filter edl tracks/sample_edl_V_A_tracks.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Filter edl tracks/sample_edl_V_A_tracks.edl -------------------------------------------------------------------------------- /Filter edl tracks/sample_edl_V_A_tracks.filtered.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Filter edl tracks/sample_edl_V_A_tracks.filtered.edl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/README.md -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/05-5-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/09-9-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/11-11-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1122.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1133.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1138.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1151.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1202.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1205.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1209.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1213.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1229.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1245.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1255.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1313.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1321.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1326.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1327.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1338.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/13-MALKOVICH-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1122.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1133.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1138.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1151.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1202.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1205.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1209.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1213.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1229.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1245.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1255.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1313.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1321.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1326.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1327.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1338.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files backup/14-MIX-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/05-5-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/09-9-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/11-11-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1122.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1133.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1138.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1151.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1202.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1205.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1209.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1213.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1229.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1245.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1255.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1313.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1321.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1326.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1327.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1338.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/13-MALKOVICH-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1122.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1133.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1138.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1151.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1202.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1205.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1209.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1213.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1229.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1245.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1255.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1313.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1321.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1326.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1327.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1338.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1549.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1551.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1604.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1617.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1633.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1647.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/files/14-MIX-160929_1704.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rename mixer files/rename_mixer_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Rename mixer files/rename_mixer_files.py -------------------------------------------------------------------------------- /Session info to table/.ipynb_checkpoints/tracks_to_table-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/.ipynb_checkpoints/tracks_to_table-checkpoint.py -------------------------------------------------------------------------------- /Session info to table/binaries/Tracks_to_Table_macOS_v2.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/binaries/Tracks_to_Table_macOS_v2.5.zip -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcuserdata/fantopop.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcuserdata/fantopop.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcuserdata/fantopop.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/project.xcworkspace/xcuserdata/fantopop.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table.xcodeproj/xcuserdata/fantopop.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table.xcodeproj/xcuserdata/fantopop.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/AppDelegate.swift -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Assets.xcassets/AppIcon.appiconset/generated-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Assets.xcassets/AppIcon.appiconset/generated-table.png -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Info.plist -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/Tracks_to_Table.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/Tracks_to_Table.entitlements -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/ViewController.swift -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/square.png -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/tracks_to_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/tracks_to_table.py -------------------------------------------------------------------------------- /Session info to table/macOS app/Tracks to Table/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/macOS app/Tracks to Table/txt.png -------------------------------------------------------------------------------- /Session info to table/modules/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/modules/html.py -------------------------------------------------------------------------------- /Session info to table/modules/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/modules/table.py -------------------------------------------------------------------------------- /Session info to table/samples/ADR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/samples/ADR.csv -------------------------------------------------------------------------------- /Session info to table/samples/ADR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/samples/ADR.html -------------------------------------------------------------------------------- /Session info to table/samples/ADR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/samples/ADR.txt -------------------------------------------------------------------------------- /Session info to table/tracks_to_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantopop/post-production-scripts/HEAD/Session info to table/tracks_to_table.py --------------------------------------------------------------------------------