Skip to content

Instantly share code, notes, and snippets.

@AykutCevik
Created January 17, 2025 09:06
Show Gist options
  • Save AykutCevik/c69ac5c050a3a475c680690b93af9dce to your computer and use it in GitHub Desktop.
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.
#!/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