Advertisement
Guest User

Untitled

a guest
Nov 20th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Hello together.
  2.  
  3. I would really like to convert many webm-files to mp4
  4. ihad success with one file by using this command
  5. > ffmpeg -i input.webm -qscale 0 -strict -2 output.mp4
  6.  
  7. Then i wanted to wirite a script and endet with
  8. > #!/bin/bash
  9.  
  10. for f in *.webm; do ffmpeg -i "$f" -qscale -experimental mp4 "${f%.webm}.mp4";
  11.  
  12.  
  13.  
  14. done
  15.  
  16.  
  17. i get this as output
  18. < Please use -q:a or -q:v, -qscale is ambiguous
  19. Expected number for q:v but found: -experimental
  20.  
  21.  
  22. can anyone point me in the right direction
  23. i am not good at coding and I cant help myself
  24.  
  25. thanks a lot
  26. and sorry for the bad english
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement