In this video I copy the video and audio streams of a GoPro generated video to a new file. I do this to remedy a pausing glitch when playing the video back with OMXPlayer on a Raspberry Pi.
Raspberry Pi Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPvIdR5BEqDgO7DsGAla_AZ
CanaKit Raspberry Pi 4 (4GB) Starter Kit (Amazon Affiliate)
US: https://amzn.to/3azJgrW
UK: https://amzn.to/2JdMq9o
CA: https://amzn.to/3bwiRvY
ES: https://amzn.to/2T06LnM (similar)
FR: https://amzn.to/3cvIZrs (similaire)
IT: https://amzn.to/2Ar74Sj (simile)
DE: https://amzn.to/2AqfWHQ (ähnlich)
IN: https://amzn.to/3ey6fWj
AU: https://amzn.to/2VTUt1C
NL: https://amzn.to/3f5NdsD (vergelijkbaar)
Play Video with OMXPlayer
omxplayer goprovid.mp4
View Video Stats with FFprobe
ffprobe goprovid.mp4
Copy Video and Audio Streams to New File
ffmpeg -i goprovid.mp4 -vcodec copy -acodec copy -dn -sn goprovid_fixed.mp4
List Files
ls -l
Note: If ffprobe and ffmpeg are not installed, you can install them with:
sudo apt install ffmpeg