Hello,
I've got EGC HD60 i record from receiver... when i stop recording it gives me 2 file:
First one is TS. Second one is MP4. But it takes long time to create the MP4 file...
Now, the problem is: when it creates the TS file it devises it to many part, the longest one is about 17 minutes and when i try to merge them to 1 file it does problems.
What should i do?
+ Reply to Thread
Results 1 to 11 of 11
-
-
Someone using the Elgato Game Capture HD asked for help with a similar problem earlier this year, since there is no way to configure Elgato's software to create a just a single TS file. TSSplitter was suggested for joining the multiple TS files to produce a complete recording. I don't know if TSSplitter worked or not because the thread's originator did not report back.
-
My guess is they use an off-the-shelf library that automatically splits TS caps into <4GB segments so it will work on FAT file systems (which have a 4 GB file size limit). Then they use another off-the-shelf library to remux from TS to MP4.
-
Then TSSplitter did not work well for joining the TS files?
The only other software that might work are transport stream editors such as VideoReDo TV Suite or Cypheros TSDoctor. These are not free, but have a free trial, -
I'm confused. I'll admit that I rarely use ffmpeg, but I thought concat was used to join files. The code above appears to just remultiplex the audio and video contained in video.ts to new_video.ts.
[Edit] For example:
Code:ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.ts
Last edited by usually_quiet; 16th Sep 2015 at 11:53.
-
I made the mistake and left out more details in that original snippet. This is how I done it in the past, assuming that the two or more files have the same frame rate, etc:
Code:ffmpeg -i video1.ts -i video2.ts -vcode copy -acodec copy -y new_video.ts
Code:ffmpeg -i video1.ts -i video2.ts -i video3.ts -vcode copy -acodec copy -y new_video.ts
-
Last edited by usually_quiet; 16th Sep 2015 at 13:03. Reason: clarity
Similar Threads
-
Editing files from Elgato game capture device help
By Revan654 in forum EditingReplies: 4Last Post: 21st Aug 2014, 22:33 -
Elgato Game Capture HD Help
By silencer775 in forum Capturing and VCRReplies: 0Last Post: 29th Apr 2014, 08:24 -
Any way to use two microphones with the Elgato Game Capture?
By Vic 2.0 in forum Capturing and VCRReplies: 27Last Post: 11th Nov 2013, 12:22 -
Is there any way? (Elgato Game Capture HD)
By Vic 2.0 in forum Capturing and VCRReplies: 1Last Post: 12th Jul 2013, 16:49 -
Help with Elgato Game Capture HD!
By Nesoroth in forum Capturing and VCRReplies: 1Last Post: 28th Jun 2012, 12:26