Raspberry Pi: Fixing OMXPlayer Glitch when playing GoPro Video

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)
➡️ Purchase here: https://amzlink.to/az0ZfrkkOaE2j
UK: https://amzlink.to/az0tldMyYgHkO
CA: https://amzlink.to/az02dRfQRpSbE
ES: https://amzlink.to/az0LjL2QjxrJf (similar)
FR: https://amzlink.to/az03BF7ks0KJJ (similaire)
IT: https://amzlink.to/az0TWmA9d7fFm (simile)
DE: https://amzlink.to/az0cV12rz0zJb (ähnlich)
IN: https://amzlink.to/az0KxgOoOocos
AU: https://amzlink.to/az0cjN4OPfBBq
NL: https://amzlink.to/az0yZHtGePHqS (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