User Tools

Site Tools


avlib_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
avlib_notes [2016/06/06 18:28]
wbeckett created
avlib_notes [2021/06/04 02:16] (current)
Line 1: Line 1:
-=== AV Lib Notes ===+==== AV Lib Notes ===
 + 
 +./avconv -i /​cnbc/​crunch/​20160525_SQUA_EDEC0F11B2.mp4 
 + 
 + 
 +http://​www.tecmint.com/​avconv-command-examples/​ 
 + 
 +<​code>​ 
 + ​avconv -i Michael-Jackson-You-Rock-My-World-HD.mp4 -r 1 -s 1366x768 -f image2 image-%03d.png 
 + 
 +    -r 1: is the number of frames you want per image, the more it is,  
 +    -the more images are created. 
 +    1366×768: is the width and height you want for the images,  
 +    you may replace it with any other size you want. 
 +    image-%03d.png:​ is the image name format, if you tried the command,  
 +    it’ll create many images like “image-001.png” , “image-002.png”.. etc, 
 +     you can replace “png” with “jpg” or “jpeg” if you like. 
 +</​code>​ 
 + 
 + 
 +avconv -i Michael-Jackson-You-Rock-My-World-HD.mp4 -vcodec libx264 newfile.avi 
 + 
 + 
 + 
 +avconv -i michael-jackson-dangerous.mp3 newfile.wav 
 + 
 + 
 +  
 +avconv -i [input file] -ss [start time] -t [duration] -codec copy [output file] 
 +http://​www.dototot.com/​how-to-trim-videos-with-the-command-line-using-avconv/​
avlib_notes.1465237706.txt.gz · Last modified: 2021/06/04 02:16 (external edit)