Skip to content

Instantly share code, notes, and snippets.

@danikaze
Created March 5, 2023 03:28
Show Gist options
  • Save danikaze/3105f889277ba03e45e47577e4a14c0b to your computer and use it in GitHub Desktop.
Save danikaze/3105f889277ba03e45e47577e4a14c0b to your computer and use it in GitHub Desktop.
Convert OBS video to something that Premiere can read
# 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
@danikaze
Copy link
Author

danikaze commented Mar 5, 2023

or just use DaVinci Resolve... ^^;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment