fenix_zone

Come unire tanti file video ts con linux

« Older   Newer »
  Share  
kelos
view post Posted on 31/5/2016, 18:19 by: kelos     +1   -1
Avatar

fenix user

Group:
moderatore globale
Posts:
510
Reputation:
+9

Status:


Come unire tanti file video ts con linux



A volte capita che magari il decoder del digitale terrestre, o un flusso streaming iptv, In fase di registrazione generino un flusso di tantissimi file video ts, magari di 10 secondi l'uno... ed ecco che sorge il problema di come riprodurli...

Basta riunirli in un unico file:

CODICE
cat *.ts > Big-video.ts


Remux A/V con ffmpeg:
mkv
CODICE
ffmpeg  -i Big-video.ts -vcodec copy -acodec copy  video.mkv

mp4
CODICE
ffmpeg  -i Big-video.ts -vcodec copy -acodec copy  video.mp4
 
Top
1 replies since 31/5/2016, 18:19   344 views
  Share