Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. #Trim Commmand
  2. ffmpeg -i part1_final.mkv -vcodec copy -acodec copy -ss 00:00:00 -to 01:45:39 part1_trimmed.mkv
  3.  
  4. #output is normal and file is successful
  5.  
  6. #Ffprobe of trimmed file
  7. ffprobe version N-66005-g3efc174 Copyright (c) 2007-2014 the FFmpeg developers
  8. built on Aug 31 2014 16:19:25 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-4)
  9. configuration: --enable-gpl --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 --extra-libs=-ldl
  10. libavutil 54. 7.100 / 54. 7.100
  11. libavcodec 56. 1.100 / 56. 1.100
  12. libavformat 56. 3.100 / 56. 3.100
  13. libavdevice 56. 0.100 / 56. 0.100
  14. libavfilter 5. 0.103 / 5. 0.103
  15. libswscale 3. 0.100 / 3. 0.100
  16. libswresample 1. 1.100 / 1. 1.100
  17. libpostproc 53. 0.100 / 53. 0.100
  18. [matroska,webm @ 0x38ab020] Could not find codec parameters for stream 0 (Video: h264, 1920x1080): unspecified pixel format
  19. Consider increasing the value for the 'analyzeduration' and 'probesize' options
  20. Input #0, matroska,webm, from 'part1_trimmed.mkv':
  21. Metadata:
  22. ENCODER : Lavf56.3.100
  23. Duration: 01:45:39.12, start: 0.000000, bitrate: 11540 kb/s
  24. Stream #0:0: Video: h264, 1920x1080, SAR 1:1 DAR 16:9, 23.98 fps, 23.98 tbr, 1k tbn, 2k tbc (default)
  25. Metadata:
  26. ENCODER : Lavc56.1.100 libx264
  27. Stream #0:1: Audio: dts (DTS), 48000 Hz, 5.1(side), fltp, 1536 kb/s (default)
  28. Metadata:
  29. ENCODER : Lavc56.1.100 dca
  30.  
  31.  
  32.  
  33. #Command to concat with second part of video
  34. ffmpeg -i part1_trimmed.mkv -i part2_final.mkv -filter_complex "[0:0] [0:1] [1:0] [1:1] concat=n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" FINAL.mkv
  35.  
  36.  
  37. #Outpt of concat
  38. ffmpeg version N-66005-g3efc174 Copyright (c) 2000-2014 the FFmpeg developers
  39. built on Aug 31 2014 16:19:25 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-4)
  40. configuration: --enable-gpl --enable-libmp3lame --enable-libvorbis --enable-libvpx --enable-libx264 --extra-libs=-ldl
  41. libavutil 54. 7.100 / 54. 7.100
  42. libavcodec 56. 1.100 / 56. 1.100
  43. libavformat 56. 3.100 / 56. 3.100
  44. libavdevice 56. 0.100 / 56. 0.100
  45. libavfilter 5. 0.103 / 5. 0.103
  46. libswscale 3. 0.100 / 3. 0.100
  47. libswresample 1. 1.100 / 1. 1.100
  48. libpostproc 53. 0.100 / 53. 0.100
  49. [matroska,webm @ 0x3960e40] Could not find codec parameters for stream 0 (Video: h264, 1920x1080): unspecified pixel format
  50. Consider increasing the value for the 'analyzeduration' and 'probesize' options
  51. Input #0, matroska,webm, from 'part1_trimmed.mkv':
  52. Metadata:
  53. ENCODER : Lavf56.3.100
  54. Duration: 01:45:39.12, start: 0.000000, bitrate: 11540 kb/s
  55. Stream #0:0: Video: h264, 1920x1080, SAR 1:1 DAR 16:9, 23.98 fps, 23.98 tbr, 1k tbn, 2k tbc (default)
  56. Metadata:
  57. ENCODER : Lavc56.1.100 libx264
  58. Stream #0:1: Audio: dts (DTS), 48000 Hz, 5.1(side), fltp, 1536 kb/s (default)
  59. Metadata:
  60. ENCODER : Lavc56.1.100 dca
  61. Input #1, matroska,webm, from 'part2_final.mkv':
  62. Metadata:
  63. ENCODER : Lavf56.3.100
  64. Duration: 01:45:43.46, start: 0.083000, bitrate: 11543 kb/s
  65. Stream #1:0: Video: h264 (High), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
  66. Metadata:
  67. ENCODER : Lavc56.1.100 libx264
  68. Stream #1:1: Audio: dts (DTS), 48000 Hz, 5.1(side), fltp, 1536 kb/s (default)
  69. Metadata:
  70. ENCODER : Lavc56.1.100 dca
  71. [buffer @ 0x3a30560] Unable to parse option value "-1" as pixel format
  72. Last message repeated 1 times
  73. [buffer @ 0x3a30560] Error setting option pix_fmt to value -1.
  74. [graph 0 input from stream 0:0 @ 0x3992680] Error applying options to the filter.
  75. Error configuring filters.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement