Skip to content
/ mp4towebm Public
forked from lukevers/mp4towebm

Convert all mp4 files in current directory from mp4 to webm

License

Notifications You must be signed in to change notification settings

bwl/mp4towebm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

mp4towebm

Convert mp4 videos to webm.

How to use

You need to specify a bitrate. For great quality, use 8M as the first argument. For alright quality, use 2M as the first argument. You can specify whatever you want. The higher the bitrate, the larger the filesize will be. All other arguments are treated as converting certain files only.

# Convert all files in current directory with 8M bitrate
mp4towebm 8M

# Convert certain files with 4M bitrate
mp4towebm 4M file.mp4 other_file.mp4 last_file.mp4

# Convert certain files with 3M bitrate
mp4towebm 3M new_*.mp4 to_process*.mp4

# Recursively convert all mp4 files with 8M bitrate
find . -type f -iname "*.mp4" -exec mp4towebm 8M '{}' \;

About

Convert all mp4 files in current directory from mp4 to webm

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%