MP4BOX how to ...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • GameForAdult
    Confirmed User
    • Mar 2011
    • 371

    #1

    Tech MP4BOX how to ...

    Hi,

    I can run it on one file

    Code:
    MP4Box -inter 500 file.mp4
    but how to run it on multi files? we have 10000 videos

    Thanks
  • abshard
    Confirmed User
    • Jan 2002
    • 6524

    #2
    Did you try *.mp4

    Comment

    • GameForAdult
      Confirmed User
      • Mar 2011
      • 371

      #3
      I find how it goes

      Code:
      find . -iname "*.mp4" -print0 | while IFS= read -d '' -r file; do MP4Box -inter 500 "$file"; done

      Comment

      Working...