Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- To batch convert webm's to JPG in a folder with FFMPEG, open Terminal and navigate to the folder containing the webm files. Then, run the following command:
- for file in *.webp; do
- ffmpeg -i "$file" "${file%.webp}.jpg"
- done
- OR
- for file in *.webm; do
- ffmpeg -i "$file" "${file%.webm}.jpg"
- done
- To convert a single webm file to a JPG file with FFMPEG, run the following command in Terminal:
- ```
- ffmpeg -i input.webm output.jpg
- ```
- Replace "input.webm" with the name of your webm file, and "output.jpg" with the name you want to give the resulting JPG file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement