Convert a single MOV video file to MP4 format:
ffmpeg -i my_video.mov my_video.mp4Convert all MOV videos in the current folder and sub-folders to MP4 and delete the orignal .MOV files: For Linux or Mac, or on Windows under msys, cygwin, cmder etc.
for video in `find . -iname "*.mov"` ; do ffmpeg -i "${video}" "${video%.*}.mp4" && rm "${video}" doneIf ffmpeg is not present on your system install it with apt install ffmpeg (on Linux) or brew install ffmpeg on Mac.
hi... sorry to interrupt your post, but I believe this is the only way to contact you...
ReplyDeletethis topic is old... but I would still like to know ... did you get a solution?
https://stackoverflow.com/questions/42125096/how-to-automate-installation-of-play-store-apps-by-package-name