Skip to content

Instantly share code, notes, and snippets.

@79man
Last active April 6, 2024 15:57
Show Gist options
  • Save 79man/17d97ec156456833b0f946482afba7ac to your computer and use it in GitHub Desktop.
Save 79man/17d97ec156456833b0f946482afba7ac to your computer and use it in GitHub Desktop.
VLC CLI commands
REM Join Videos with compatible codecs - This sometimes does not include audio for some videos.
REM IN case of such problems, try the next command
vlc.exe 1.mp4 2.mp4 --sout "#gather:std{access=file, dst=3.mp4}" --sout-keep
# Join Videos with compatible codecs - Audio also works
vlc.exe --advanced --sout "#gather:std{access=file,mux=ts,dst=3.mp4}" --no-sout-all --sout-keep 1.mp4 2.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment