Questions tagged [mpeg2-ts]

Questions related to creation, playing and program interaction with MPEG 2 Transport stream, a standard format for transmission and storage of audio, video, and Program and System Information Protocol data. It is used in broadcast systems such as DVB, ATSC and IPTV. Transport Stream is specified in MPEG-2 Part 1, Systems (formally known as ISO/IEC standard 13818-1 or ITU-T Rec. H.222.0)

MPEG 2 Transport stream is a standard format for transmission and storage of audio, video, and Program and System Information Protocol data. It is used in broadcast systems such as DVB, ATSC and IPTV.

Transport Stream is specified in MPEG-2 Part 1, Systems (formally known as ISO/IEC standard 13818-1 or ITU-T Rec. H.222.0). It defines how MPEG audio, video and program information is multiplexed and synchronized.

More information at http://en.wikipedia.org/wiki/MPEG_transport_stream

280 questions
0
votes
1 answer

Android PCM -> AAC = M4A vs. MPEG2-TS

How can I package raw AAC-data into a MPEG2-TS stream? I'm continuous recoding (microphone) & compressing PCM-audio inside Android to AAC: encoder = MediaCodec.createEncoderByType("audio/mp4a-latm"); MediaFormat format = new MediaFormat(); …
Martin L.
  • 3,006
  • 6
  • 36
  • 60
0
votes
1 answer

segmentation error before return statement in c

I compiled and run the code successfully.but after that i am getting segmentation problem ,I checked the code again and again but i didn't got the reason for segmentation error,somebody please help me to fix this issue. here is my code .. #include…
user2406774
  • 151
  • 1
  • 1
  • 7
0
votes
2 answers

Transport Stream Standard

I want to know proper standard for transport streams,Some of my doubts are: If size of PES packet is > 65536 then pes_packet_length filed should be zero ? If PES packet size more than 65536 then do we require PES header for over flow packets ?
user3706789
  • 87
  • 1
  • 7
0
votes
1 answer

Assertion pos >= 188 mpeg ts

In function handle_packet() of mpegts.c (libavformat), I got a position of positive value which is lesser than 188. Which cause assertion failure. Could you please tell the reason for this issue and also suggest a solution. pos =…
user-ag
  • 224
  • 3
  • 20
0
votes
1 answer

How does Mpeg2 file plays with H.264 parser?

I have MPEG-2 TS file recorded on my STB . VLC media information for the clip is Type : Video codec: Mpeg-1/2 video(mpgv) Type : audio codec: MPEG AAC Audio(mp4a) I currently do not have Mpeg2 video parser so the clip wont play at all. But just…
CodeTry
  • 312
  • 1
  • 19
0
votes
1 answer

does any video portal support mpeg2-ts container format

Is there any video portal (such as youtube/youku/hulu) etc, which support mpeg2-ts format ? Just wanted to know if TS format is still in use by any of the content provider. I know this format is used for media archiving on DVDs etc ... but wanted to…
takladev
  • 353
  • 5
  • 16
0
votes
1 answer

JAVA API for cut fragment from mpeg-ts file

I search a library that can cut fragment of mpeg-ts file. Now I use ffmpeg for this purpose but I'd like to leave it. Now, I see on jcodec and mp4parser libraries but can't found needful API.
CHEM_Eugene
  • 438
  • 3
  • 20
0
votes
1 answer

mpeg2-ts aac PTS

I have a IP Camera which sends 8000hz Sampling rate configured audio and H264 video. I made a program generating TS-file from this IP camera and it works fine on VLC, Android Media player except IPhone, Mac OSX Safari. (The program works with HLS…
JayMuzie
  • 341
  • 1
  • 4
  • 16
0
votes
4 answers

Software for MPEG-TS analysis and ETR 101 290 monitoring under linux

I'm working with a Cable TV company at the moment and we want to get a ubuntu box on a remote head end where all our feeds are flying over IP on multicast. What we would like to do with this machine (apart from wireshark the multicast) is to be able…
rantsh
  • 608
  • 10
  • 30
0
votes
1 answer

How to read the PAT table of mpegts

I have just started looking at some work related with reading a mpeg-ts file. This is my first project with video streaming and my first task is to read the program names from the file. I am currently looking at FFMpeg and FFProbe and have…
JD.
  • 15,171
  • 21
  • 86
  • 159
0
votes
1 answer

Gstreamer pipeline to play mpegts file works in version 0.10 but not 1.0

I have a working gst-launch pipeline in 0.10 : gst-launch-0.10 \ filesrc location=c:/prog4.mpg \ ! tsdemux name=dem \ ! queue \ ! ac3parse \ ! a52dec \ ! audioconvert \ ! audioresample \ ! autoaudiosink \ …
rubndsouza
  • 1,224
  • 15
  • 23
0
votes
1 answer

Converting mp4 to mpeg2-ts crashes on audio packets

I have written some C code that takes an mp4 file with h264-encoded video and AAC-encoded audio and writes it to segmented .ts files. The code can be seen here: http://pastebin.com/JVdgjM9G The problem is that the code chokes on audio packets.…
Christian P.
  • 4,784
  • 7
  • 53
  • 70
0
votes
1 answer

I cannot use AV_CODEC_ID_MPEG2TS in ffmpeg

I wanna use ffmpeg to convert yuv raw video file into ts stream video file.So I do this in my code: avcodec_find_encoder(AV_CODEC_ID_MPEG2TS); But when I run it ,it occurs that: [NULL @ 0x8832020] No codec provided to avcodec_open2() I change the…
socket
  • 1,153
  • 3
  • 13
  • 22
0
votes
1 answer

ATSC Picture User Data in Closed Captioning

In Adobe Media Server 5.0.1,Closed captioning workflows supported Streaming captioning data stored in ATSC Picture User Data. What is ATSC Picture User Data?
Hulk1991
  • 3,079
  • 13
  • 31
  • 46
0
votes
3 answers

With ffmpeg, trying to change a container from Mpeg TS to MP4, fps became twice of Mpeg TS

I got a Mpeg TS file from a capture board to make a DEMO video clip. Here is information of the file from ffmpeg; Stream #0:0[0x51]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 59.94 tbr, 90k tbn,…
user2148481
  • 1
  • 1
  • 1
  • 2
1 2 3
18
19