recorded a zoom call on MP4, takes ~200 MB. remove...
# random
j
recorded a zoom call on MP4, takes ~200 MB. removed a clip, takes ~200 MB, now MOV format. exported to MP4 again with iMovie, takes 5 GB. why video formats and codecs have to be so hard?? becoming a Kedro influencer on YouTube is going to be impossible at this rate 😂
🫠 4
n
Have you try the Video Dataset? 😀
😂 2
d
j
Have you try the Video Dataset?
can I actually do this with Kedro?? never occurred to me, sounds like an awesome yak shaving idea
🥳 1
in the end
ffmpeg
(and of course Stack Overflow) saved the day:
Copy code
ffmpeg -i /path/to/input/file -c:v copy -c:a copy /path/to/output.mp4
(mov is very similar to mp4 and most of the time contains h264 video and aac audio, which is equally supported in mp4)
https://apple.stackexchange.com/a/271633