Changes between Version 1 and Version 2 of Ticket #11056, comment 15


Ignore:
Timestamp:
Sep 4, 2024, 1:55:58 AM (2 years ago)
Author:
David Johansen

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11056, comment 15

    v1 v2  
    66
    77Then combine the files into a single file by starting with the init:
    8 `cat init.mp4 >> output.mp4`
     8`cat init.mp4 > output.mp4`
    99And then adding the rest of the files:
    1010`for f in index*.m4s; do echo $f; cat $f >> output.mp4; done`