NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 27 28 29 30 31 … 93 Next »
TS container can contain MPEG2 and H264?

 
  • 0 Vote(s) - 0 Average
TS container can contain MPEG2 and H264?
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#1
2008-12-13, 05:25 AM
I have been playing with my new TS files and mplayer (which I use to see dimensions and bitrate etc for a file) tells me the new ts from the ts mux and my hvr-1600 is:


Code:
ID_VIDEO_ID=2496
VIDEO MPEG2(pid=2496) AUDIO A52(pid=2497) NO SUBS (yet)!  PROGRAM N. 9
ID_VIDEO_ID=2496
ID_AUDIO_ID=2497
VIDEO:  MPEG2  720x480  (aspect 2)  29.970 fps  3907.2 kbps (488.4 kbyte/s)
ID_FILENAME=D:\TV\Test\TS\Shaw1 - SD.ts
ID_DEMUXER=mpegts
ID_VIDEO_FORMAT=0x10000002
ID_VIDEO_BITRATE=3907200
ID_VIDEO_WIDTH=720
ID_VIDEO_HEIGHT=480
ID_VIDEO_FPS=29.970
ID_VIDEO_ASPECT=0.0000
ID_AUDIO_FORMAT=8192
ID_AUDIO_BITRATE=0
ID_AUDIO_RATE=0
ID_AUDIO_NCH=0
ID_LENGTH=206.94
==========================================================================
Opening audio decoder: [liba52] AC3 decoding with liba52
AUDIO: 48000 Hz, 2 ch, s16le, 192.0 kbit/12.50% (ratio: 24000->192000)
ID_AUDIO_BITRATE=192000
ID_AUDIO_RATE=48000
ID_AUDIO_NCH=2
Selected audio codec: [a52] afm: liba52 (AC3-liba52)
==========================================================================

I have another sample file I got a while back (I can't remember where) and mplayer gives me this:

Code:
ID_VIDEO_ID=4113
VIDEO H264(pid=4113) AUDIO AAC(pid=4352) NO SUBS (yet)!  PROGRAM N. 1
ID_VIDEO_ID=4113
ID_AUDIO_ID=4352
FPS seems to be: 25.000000
ID_FILENAME=D:\TV\Test\TS\hcw_hd_pvr2_1080i_h264.ts
ID_DEMUXER=mpegts
ID_VIDEO_FORMAT=0x10000005
ID_VIDEO_BITRATE=0
ID_VIDEO_WIDTH=0
ID_VIDEO_HEIGHT=0
ID_VIDEO_FPS=25.000
ID_VIDEO_ASPECT=0.0000
ID_AUDIO_FORMAT=MP4A
ID_AUDIO_BITRATE=0
ID_AUDIO_RATE=0
ID_AUDIO_NCH=0
ID_LENGTH=0.00
==========================================================================
Opening audio decoder: [faad] AAC (MPEG2/4 Advanced Audio Coding)
AUDIO: 48000 Hz, 2 ch, s16le, 128.0 kbit/8.33% (ratio: 16000->192000)
ID_AUDIO_BITRATE=128000
ID_AUDIO_RATE=48000
ID_AUDIO_NCH=2
Selected audio codec: [faad] afm: faad (FAAD AAC (MPEG-2/MPEG-4 Audio) decoder)
==========================================================================


My question is, I can make ZProcess see and understand MPEG2 in ts files, but what other formats do people get TS files in, from around the world...

I may have to create fake values, or make my transcoder commandline, less input file dependent...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,952
Threads: 956
Joined: May 2006
#2
2008-12-13, 06:11 AM
For video I have received samples with mpeg1,2,4, pes,h264, avc, and raw. For audio mp2, ac3, aac (mp4a), aac he-latm,. Solve latm audio containers and many _nz's will be happy. I'm sure that is not exhaustive.

There's also bluray in m2ts and variants called tp

For a warning sometimes mencoder and ffmpeg will not detect the pids or stream types properly and remuxing is a requirement.

Martin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#3
2008-12-13, 06:59 AM
mvallevand Wrote:For video I have received samples with mpeg1,2,4, pes,h264, avc, and raw. For audio mp2, ac3, aac (mp4a), aac he-latm,. Solve latm audio containers and many _nz's will be happy. I'm sure that is not exhaustive.

There's also bluray in m2ts and variants called tp

For a warning sometimes mencoder and ffmpeg will not detect the pids or stream types properly and remuxing is a requirement.

Martin

Yeah no kidding...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#4
2008-12-13, 07:00 AM
mvallevand Wrote:For a warning sometimes mencoder and ffmpeg will not detect the pids or stream types properly and remuxing is a requirement.

Martin

Yeah no kidding...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#5
2008-12-13, 07:02 AM
So the choice of the MPEG2 inside and AC# was in the stream I recorded, (because there wasn't any encoding occurring...)
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#6
2008-12-13, 08:42 AM
mvallevand Wrote:For video I have received samples with mpeg1,2,4, pes,h264, avc, and raw. For audio mp2, ac3, aac (mp4a), aac he-latm,. Solve latm audio containers and many _nz's will be happy. I'm sure that is not exhaustive.

There's also bluray in m2ts and variants called tp

For a warning sometimes mencoder and ffmpeg will not detect the pids or stream types properly and remuxing is a requirement.

Martin

Do you figure that VLC will catch most of those formats?
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Problems with THEATRIX 550 HW MPEG2 encoder bitrates. tmrt 0 1,238 2007-05-28, 01:36 PM
Last Post: tmrt
  Need MPEG2 PS file specification bgowland 4 2,768 2007-01-22, 07:37 PM
Last Post: bgowland
  MPEG2 Frame Capture reven 8 3,279 2005-12-08, 01:22 AM
Last Post: reven
  MPEG2 question erik 1 1,568 2005-08-15, 07:13 PM
Last Post: reboot

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode