YaLTeR / hl-capture

A tool for capturing Half-Life videos on Linux.
MIT License
33 stars 2 forks source link

Export sound_extra to a separate sound file. #4

Open execut4ble opened 6 years ago

execut4ble commented 6 years ago

Currently it appends it to the video file making video and audio track lengths differ, this makes the clip unaccessible past the video track in programs like Adobe Premiere CC, possibly some others too.

Either separate the extra sound in another file or fill the remaining video track with last frame/black to match the length.

YaLTeR commented 6 years ago

Oh, another Premiere stupidity, what a surprise.

As a workaround, you can separate out the audio track using ffmpeg -i input.mp4 -map 0:1 -c copy out.mp4.