User Tools

Site Tools


ffmpeg

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
ffmpeg [2020/12/15 19:20]
sdbs
ffmpeg [2021/12/11 23:21] (current)
sdbs improve commando
Line 60: Line 60:
  
 <code bash> <code bash>
-ls *.jpg | xargs -I xyz echo "file 'xyz'" > list.txt+ls -1 | grep 'jpg$' | xargs -I xyz echo "file 'xyz'" > list.txt
 </code> </code>
  
Line 67: Line 67:
 </code> </code>
  
-It's up to preference, all end up with a list of all JPGs in current directory, in ''list.txt''.+It's up to preference, all end up with a list of all JPGs in current directory, in ''list.txt''(Though the first command can handle a bit more files.)
  
 == 2. list to video == == 2. list to video ==
ffmpeg.txt ยท Last modified: 2021/12/11 23:21 by sdbs