Advertisement
Guest User

Untitled

a guest
Mar 31st, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. Command :
  2.  
  3. @Echo off
  4. Echo "*****************START***************"
  5. FOR %%G in (*.webm) DO (
  6. "ffmpeg\bin\ffmpeg" -i "%%G" -codec copy "%%~nG.mp4")
  7. Echo "*****************END***************"
  8. pause
  9.  
  10. Console output :
  11.  
  12. "*****************START***************"
  13. ffmpeg version N-44818-g13f0cd6 Copyright (c) 2000-2012 the FFmpeg developers
  14. built on Sep 27 2012 19:30:20 with gcc 4.7.1 (GCC)
  15. configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runt
  16. ime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable-libass -
  17. -enable-libcelt --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-l
  18. ibfreetype --enable-libgsm --enable-libmp3lame --enable-libnut --enable-libopenj
  19. peg --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheo
  20. ra --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-li
  21. bvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --ena
  22. ble-zlib
  23. libavutil 51. 73.101 / 51. 73.101
  24. libavcodec 54. 59.100 / 54. 59.100
  25. libavformat 54. 29.104 / 54. 29.104
  26. libavdevice 54. 2.101 / 54. 2.101
  27. libavfilter 3. 17.100 / 3. 17.100
  28. libswscale 2. 1.101 / 2. 1.101
  29. libswresample 0. 15.100 / 0. 15.100
  30. libpostproc 52. 0.100 / 52. 0.100
  31. Input #0, matroska,webm, from 'Bande annonce.webm':
  32. Duration: 00:03:07.40, start: 0.000000, bitrate: 3114 kb/s
  33. Stream #0:0: Video: vp8, yuv420p, 1280x720, SAR 1:1 DAR 16:9, 29.97 fps, 29.
  34. 97 tbr, 1k tbn, 1k tbc (default)
  35. Stream #0:1: Audio: vorbis, 44100 Hz, stereo, s16 (default)
  36. [mp4 @ 040605e0] track 0: could not find tag, codec not currently supported in c
  37. ontainer
  38. Output #0, mp4, to 'Bande annonce.mp4':
  39. Metadata:
  40. encoder : Lavf54.29.104
  41. Stream #0:0: Video: vp8, yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 29.97
  42. fps, 90k tbn, 1k tbc (default)
  43. Stream #0:1: Audio: vorbis ([221][0][0][0] / 0x00DD), 44100 Hz, stereo (defa
  44. ult)
  45. Stream mapping:
  46. Stream #0:0 -> #0:0 (copy)
  47. Stream #0:1 -> #0:1 (copy)
  48. Could not write header for output file #0 (incorrect codec parameters ?): Operat
  49. ion not permitted
  50. "*****************END***************"
  51. Appuyez sur une touche pour continuer...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement