Created
January 17, 2025 09:06
-
-
Save AykutCevik/c69ac5c050a3a475c680690b93af9dce to your computer and use it in GitHub Desktop.
This shell script is designed to automate the conversion of multiple H.264 video files to MP4 format using FFmpeg. It loops through all .264 files in the current directory and converts each file to an MP4 file with the same base name.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in *.264; do ffmpeg -i "$i" "${i%.*}.mp4"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment