Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to convert ts to mp4 with ffmpeg

ffmpeg -i input.ts -c:v libx264 -c:a aac output.mp4
Comment

ffmpeg join ts files to mp4

// Windows
copy /b segment1_0_av.ts+segment2_0_av.ts+segment3_0_av.ts all.ts
ffmpeg -i all.ts -acodec copy -vcodec copy all.mp4

// GNU/Linux, using bash:
cat segment1_0_av.ts segment2_0_av.ts segment3_0_av.ts > all.ts
ffmpeg -i all.ts -acodec copy -vcodec copy all.mp4
Comment

PREVIOUS NEXT
Code Example
Shell :: add changes to last commit 
Shell :: cancel a commit not pushed 
Shell :: remotelog muirey03 github 
Shell :: how download google drive file with wget 
Shell :: choco update node 
Shell :: convert pem to ppk ubuntu 
Shell :: how to stop git asking for username and password 
Shell :: ubuntu remove kubelet 
Shell :: uuid 
Shell :: shell promt user input 
Shell :: clone mongodb database to local machine 
Shell :: error mounting /dev/sdb1 at /media/ 
Shell :: find all files edited after date linux 
Shell :: git remove tracked files without deleting 
Shell :: install nginx ubuntu 20.04 
Shell :: zoom ubuntu 18.04 
Shell :: how to install kivy in ubuntu 
Shell :: how to check mac address in linux 
Shell :: gpu name command line linux 
Shell :: linux list groups 
Shell :: edit last commit message 
Shell :: remove junk files from ubuntu via terminal 
Shell :: how to uninstall iredmail 
Shell :: using wget with a proxy 
Shell :: pypdf2 install 
Shell :: login github command line 
Shell :: force delete pod kubernetes 
Shell :: install ninja on fedora 
Shell :: npm install mocha dev dependency 
Shell :: fatal: The current branch master has multiple upstream branches, refusing to push. 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =