Created
March 5, 2023 03:28
-
-
Save danikaze/3105f889277ba03e45e47577e4a14c0b to your computer and use it in GitHub Desktop.
Convert OBS video to something that Premiere can read
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OBS to be configured with the following Recording options | |
# * Settings > Output > Recording (Advanced) | |
# - Recording Format: mkv | |
# - Recording Tracks: 2, 3 | |
# - Encoder: NVIDIA NVENC H.264 | |
# Convert video to something usable by Premiere | |
ffmpeg.exe -i input.mkv -codec copy output.mp4 | |
# Extract the other audio track | |
ffmpeg.exe -i input.mkv -map 0:a:1 -vn -acodec copy audio.aac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
or just use DaVinci Resolve... ^^;