Ok, I am experimenting a little. I created a m3u8 file along with a few .ts files from an RTMP stream (OBS).
How can I use ffmpeg to create an MP4 out of them?
Thanks,
Ray
+ Reply to Thread
Results 1 to 7 of 7
-
-
ffmpeg selects the decoder on its own, so any supported input file is basically the same. You would only specify the output parameters.
use defaults
ffmpeg -i input.m3u8 output.mp4
or specify much
ffmpeg -i input.m3u8 -c:v libx264 -preset medium -crf 18 -vf format=yuv420p -c:a aac -b:a 160k -movflags +faststart output.mp4
or copy streams as-is
ffmpeg -i input.m3u8 -c copy output.mp4
if it breaks, then try in two steps, via MKV:
ffmpeg -i input.m3u8 -c copy output.mkv
ffmpeg -i input.mkv -c copy output.mp4Last edited by Case; 16th May 2019 at 13:31.
-
One other question. When I create a video using my samsung S8 and the ManyCam app, when I turn the phone side ways, the video on screen follows, but the subsequent mp4 does not? So basically portrait works in the mp4 but landscape does not?
Ray -
ffmpeg -i intermediate.mp4 -vf "transpose=dir=clock" -c:a copy output2.mp4
where
"transpose=dir=cclock_flip" = 90°CounterCLockwise and Vertical Flip (default)
"transpose=dir=clock" = 90°Clockwise
"transpose=dir=cclock" = 90°CounterClockwise
"transpose=dir=clock_flip" = 90°Clockwise and Vertical Flip
"transpose=dir=clock,transpose=dir=clock" = 180°
In automated situations, it is possible to make exceptions for either landscape or portrait. transpose=dir=clock:passthrough=portrait -
-
Similar Threads
-
FFMPEG Conversion from MKV to MP4 returns a empty MP4 file?
By lolmaisine in forum Video ConversionReplies: 4Last Post: 6th Mar 2019, 07:45 -
Create mp3 duplicates of all mp4-files in a folder using ffmpeg
By DennisO in forum Video ConversionReplies: 29Last Post: 23rd Nov 2018, 06:37 -
How to create a Interlaced Video with FFMPEG?
By franvlza in forum Newbie / General discussionsReplies: 5Last Post: 13th Jul 2015, 00:07 -
MPG2Cut2 to FFMPEG MP4 vs FFMPEG MPG2 to MP4 AviDemux
By RedPenguin in forum Video ConversionReplies: 4Last Post: 29th Apr 2015, 12:16 -
Create video from images with ffmpeg
By TorBru in forum Video ConversionReplies: 7Last Post: 30th Aug 2014, 08:42