It took me a while to finish, but thanks to building chapters in small chunks and combining them together using ffmpeg, I finally finished.
2 Likes
Beautiful and quiet place.
Almost seems like you have the beaches all for yourself.
Thanks for sharing Ben
1 Like
Thank you for watching! Thatβs why I keep coming back.
For ffmpeg, I use the concatenate function using this entry:
ffmpeg -f concat -i input.txt -c copy FINAL.mp4
then I have another file called input.txt. Inside that file I have something like below:
file β01.mp4β
file β02.mp4β
This tells ffmpeg to concatenate files 01.mp4 & 02.mp4. It seems to not like spaces in the filenames so no spaces.
Cheers!