ibi

film_merge_audio_tracks.sh

ibi
Oct 23rd, 2025
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.61 KB | None | 0 0
  1. #!/bin/bash
  2. # deu: kombiniert englische und deutsche tonspuren von mediathek-downloads
  3. # eng: combines english and german audio tracks from mediathek-downloads
  4. # https://mediathekviewweb.de
  5. #
  6. ffmpeg -i 03deu_3141120_58079978.mp4 -i 03eng_3141124_58080088.mp4 -map 0:v -map 0:a -map 1:a -c:v copy -c:a copy -metadata:s:a:0 language=deu -metadata:s:a:1 language=eng -metadata date="1989" -metadata title="S0103: The Adventure of Johnnie Waverly" -metadata description="Poirot tries to prevent the kidnapping of a country squire's son. While his plan fails, all is not what it seems." ../s01e03_poirot_und_der_kidnapper.mp4
  7.  
Advertisement
Add Comment
Please, Sign In to add comment