This is a stream type defined under MPEG 2 Systems (ISO 13818-1) which is primarily used for all broadcast streams in the world. It defines how MPEG audio video is multiplexed and synchronized.
5
votes
1answer
1k views
Adding video codec to Android
Can someone please explain the steps I need to take in order to add a
new codec to Android?
Also, I would like the codec to be installed as part of an application
installation (or first launch) and ...
4
votes
1answer
248 views
where to start/split mpeg2-ts
I am writing a server which live streams mpeg2-ts on HTTP and I wondered what's the best position to split an mpeg transport stream. The stream is going to be played by iptv set-top boxes and I have ...
3
votes
1answer
404 views
MPEG-TS Encoding
I have a file that i need to convert to MPEG-TS so that it fits the below specification:
Elementary stream bitrate [kbit/s]
video: 2575
audio: 2 x 192
subtitle: -
PAT/PMT: -
Stuffing: -
Component TS ...
2
votes
1answer
239 views
How to play a video in mpeg-ts container format with H.264 encoding in a Flex 4 application?
I am trying to create a Flex 4 application to stream video in mpeg-ts format. The video is encoded in H.264 and the audio in mp3/AAC. I am unable to figure out the approach I should take. Is it ...
2
votes
1answer
399 views
Extract mpeg transport stream header from a UDP packet
I have written a program where i get udp packet from a multicast address.
Now i need to extract the mpegts from this packet. I am able to take the payload of the udp packet. Can some one help me to ...
2
votes
2answers
744 views
Generate PCR from PTS
I am trying to create PCR from PTS as follows.
S64 nPcr = nPts * 9 / 100;
pTsBuf[4] = 7 + nStuffyingBytes;
pTsBuf[5] = 0x10; /* flags */
pTsBuf[6] = ( nPcr ...
1
vote
1answer
28 views
Extracting AC-3 from MPEG Transport Stream
I am writing a demultiplexer for MPEG Transport Stream which should extract Audio and Video
access points.
Assume i have an Audio PID and that i know it is AC-3 audio.
Also assume that i collected ...
1
vote
0answers
109 views
Is it possible to use HTML5 to display an MPEG Transport Stream video?
I have several MPEG2 Transport Stream videos with KLV metadata embedded in them. I would like to display the videos in a web browser. Is it possible to use the HTML5 <video> tag to play a video ...
1
vote
0answers
143 views
Merge two mpeg-2 transport stream files into one media file on iOS
Media file segmenter is a tool provided by Apple
It can divides one media file into a series of small mpeg-2 transport stream files for HTTP Live Streaming
Now, I would like to do a reverse job: ...
1
vote
0answers
132 views
Timed Metadata for HTTP Live Streaming in android
Is there any ways or methods to read timed metadata which is present in MPEG-2 Transport Streams (.ts files) for Android.
However, This feature is available in Apple iOS.
Regards,
S
1
vote
0answers
98 views
Problem with MpegTs file while playing with VLC
I have created mpegts file which contains h264 elementary stream.
I am facing a pixelation problem with my encoded file when I try to play it using VLC.
Can anyone help me in finding what is going ...
1
vote
2answers
121 views
ATSC Digital Broadcasting
I dont know on which tag i need to ask this question.
I'm currently studying about the ATSC standards for Digital TV broadcasting.
I got a doubt while going through the contents.In Digital TV ...
1
vote
3answers
274 views
Video size (horizontal and vertical) from MPEG-2 Transport Stream
I need to know how to get the height and width, and any other descriptive data I can, out of an MPEG Transport Stream (TS).
Before this answer shows up: I'm well aware of the video sequence header ...
1
vote
1answer
78 views
PCR based Seek for MpegTSFile
I want to implement seek functionality for MpegTs file playback.
Could any one suggest me how to convert PCR to time(in mescs).
I know that PCR is used for seek(I have seen in VLC) but would like to ...
1
vote
1answer
115 views
How to embed metadata with in mpeg2ts
I want to embed metadata about a particular stream with in a mpeg2ts. which is the best field with in transport stream to embed this information. Can i embed this information with in the adaptation ...
1
vote
0answers
168 views
DVB-CSA-1 vs DVB-CSA-2
I need some help from mpeg2-ts DVB and broadcasting experts. Can someone tell me what is the difference between those algorithms in common.
1
vote
2answers
234 views
how mpegts works
Can anyone please explain as to how mpeg-ts works. I have gone through the specification doc but didnt understood as to why multiple streams are combined to form one stream.
Also I opened a .ts file ...
0
votes
2answers
112 views
MPEG 2 - Adding custom tags via editing the source
I'm looking for advice and whether what I want to do is possible.
I've been ask to create something similar to ID3 mp3 tags that can be used with MPEG 2/MPEG-TS video files. Because I'm a crude ...
0
votes
1answer
293 views
Using AVAssetWriter to create MPEG-2 or AAC ADTS on iPhone
Is it possible to use AVAssetWriter to write an MPEG2 ADTS or AAC ADTS on ios?
First I make an AVAssetWriter
assetWriter = [[AVAssetWriter alloc] initWithURL:[NSURL fileURLWithPath:filePath]
...
0
votes
0answers
96 views
KLV Key for Sensor Bore Sight
I am trying to record metadata using STANAG 4609 standard for mpegts.
Could any one tell me what is the KLV key value for "Sensor BoreSight"
Kind Regards,
Venki
0
votes
1answer
347 views
Problem in Reading MpegTs File with VLC
I have written an encoder for mpegts and I am trying to play it using VLC,but VLC is not able to play my file.
My encoder looks fine as it is writting PAT, PMT tables, video data properly.
Could any ...