VideoHelp Forum
+ Reply to Thread
Results 1 to 7 of 7
Thread
  1. I'm looking for a program that plays multiple .TS video files from recorded tv show from TV on the pc without merging it on a single file for real.
    Also i need it to show the titles if possible.
    Quote Quote  
  2. Member Cornucopia's Avatar
    Join Date
    Oct 2001
    Location
    Deep in the Heart of Texas
    Search PM
    except that is contrary to the intended expectation that the TS format incorporate multiple programs (one of its reasons for being).

    Scott
    Quote Quote  
  3. I would go for ffmpeg (ffplay) on your side - probably fast cpu required but...

    As a guidelines use this one https://trac.ffmpeg.org/wiki/Create%20a%20mosaic%20out%20of%20several%20input%20videos should work.
    Quote Quote  
  4. Member
    Join Date
    Mar 2006
    Location
    United States
    Search Comp PM
    I think maybe the OP is talking about segmented ts fies split by file size into say 1GB chunks movie0001.ts, movie0002.ts, movie0003.ts and he wants a player which sees all segments and presents them as a single movie with tota duration being the sum of the chunks and being able to navigate freely anywhere on the timeline without pauses in playback crossing file boundaries?

    With that being said, I dont thin there are any player which do that these days.
    Quote Quote  
  5. Originally Posted by qz3fwd View Post
    I think maybe the OP is talking about segmented ts fies split by file size into say 1GB chunks movie0001.ts, movie0002.ts, movie0003.ts and he wants a player which sees all segments and presents them as a single movie with tota duration being the sum of the chunks and being able to navigate freely anywhere on the timeline without pauses in playback crossing file boundaries?

    With that being said, I dont thin there are any player which do that these days.
    Potplayer can do it. It was one of the features from kmplayer.
    Quote Quote  
  6. Member
    Join Date
    Apr 2009
    Location
    New Zealand
    Search PM
    Merging to a single file is always better, it's far simpler to play and you can remove adverts more easily. You just need to use simple concatenation to join the files as multi TS files usually join easily (no special trick required as long as they're from the same recording).

    e.g. even a simple command batch should do the job:
    Code:
    @echo off
    copy /b 00001.ts joined.ts
    copy /b joined.ts + 00002.ts
    copy /b joined.ts + 00003.ts
    (etc...)
    pause
    When downloading shows from my networked Set-top TV recorder I use Wget to join from a batch file and a file list. e.g.

    "join.cmd":
    Code:
    @echo off
    :: Concatenate files from list
    wget -t5 -i files.txt -O TVshow.ts
    echo Finished.
    pause
    "files.txt":
    Code:
    http://192.168.1.3/1/ts/111221214800_003.ts
    http://192.168.1.3/1/ts/111221214800_003.001.ts
    http://192.168.1.3/1/ts/111221214800_003.002.ts
    (etc...)
    Quote Quote  
  7. If you're looking to mosiaic the four videos as in Pandy's post, and your computer is fast enough, you can use an AviSynth script to stack the videos and a media player to play the script, no conversion required.

    Code:
    tl = ffVideoSource("TopLeft.ts")
    tr = ffVideoSource("TopRight.ts")
    bl = ffVideoSource("BottomLeft.ts")
    br = ffVideoSource("BottomRight.ts")
    
    StackVertical(StackHorizontal(tl, tr),  StackHorizontal(bl, br))
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!