>>93151104I just do the following and it just spares me a command and keeps audio+video together. I'm lazy. It's a bit annoying if catbox is slow again but I'm used to wait for a moment.
```
# Check filesizes and formats to avoid encoding because copying is almost instant while encoding takes up to minutes per try (just consider webm formats)
yt-dlp -F "
https://www.youtube.com/watch?v=MG8f167W8RM"
# Download sources
yt-dlp -f251 -o audio.webm "
https://www.youtube.com/watch?v=MG8f167W8RM"
yt-dlp -f243 -o video.webm "
https://www.youtube.com/watch?v=MG8f167W8RM"
# Merge the files
fmpeg -i video.webm -i audio.webm -c:a copy -c:v copy video+audio.webm
# cut the video, ss is start, to is end, check the video for good cutting points and check the output. You might have to adjust by microseconds (.9 in this case) and repeat.
ffmpeg -ss 0:54.9 -to 1:23 -i video+audio.webm -c:v copy -c:a copy output.webm
# create the file without audio track to for 4chan
ffmpeg -i output.webm -an -c:v copy output-noaudio.webm
```