Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
437 views

Access MPEG transport packets via .NET

I have to deal with MPEG 2 transport packets using .NET. What is the best way to do that? Currently I'm considering using OpenCV to accomplish that, but not sure yet if it's possible.
2
votes
0answers
127 views

Xbox 360 XNA HLS Streaming

I am interested in creating a simple HLS Viewer for the Xbox 360 that works kind of like SilverLive. I have read about as much documentation oh HLS that I can find and am not sure where to continue. I ...
2
votes
1answer
110 views

directshow mpeg2 text overlay without decoding

I found some directshow filters that does text overlay, but they always build this graph: source mpeg2 (only video) -> mpeg2 decoder -> overlay -> (some encoder) ... -> file writer Is possible (also ...
2
votes
2answers
616 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 ...
2
votes
2answers
193 views

setting timestamps for audio samples in directshow graph

I am developing a directshow audio decoder filter, to decode AC3 audio. the filter is used in a live graph, decoding TS multicast. the demuxer (mainconcept) provides me with the audio data demuxed, ...
2
votes
5answers
1k views

How to determine video dimensions of an mpeg-2 program stream file

How do I programmatically find out the width and height of the video in an mpeg-2 transport program stream file? Edit: I am using C++, but am happy for examples in any language. Edit: Corrected ...
1
vote
3answers
76 views

How to change the RGB value of the pixels, to read out and to save the changes of every frame on TV

I'd like to make a C++ program that changes the RGB value of the pixels of every frame of the MPEG2 file to be broadcasted, and reads out and saves the changed value of the pixels of every frame on TV ...
1
vote
0answers
79 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
102 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
1answer
61 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
442 views

calculate MPEG frame length (ms)

I'm looking all over the Internet for information in regards to calculating the frame length and it's been hard... I was able to successfully calculate the frame length in ms of MPEG-4, AAC, using: ...
1
vote
1answer
726 views

How do I set libavcodec to use 4:2:2 chroma when encoding MPEG-2 4:2:2 profile?

I have a project using libavcodec (ffmpeg). I'm using it to encode MPEG-2 video at 4:2:2 Profile, Main Level. I have the pixel format PIX_FMT_YUV422P selected in the AVCodecContext, however the video ...
0
votes
0answers
15 views

MPEG2 DCT values

This has reference to the MPEG2 reference code taken from: http://www.mpeg.org/pub_ftp/mpeg/mssg/mpeg2vidcodec_v12.tar.gz This codec implementation has a no. of different files and implements MPEG 2 ...
0
votes
2answers
98 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
2answers
61 views

How to read data in elementary stream

I have to read the eiss table in the elementary stream. How to read the elementary stream and get access to the data.Are there any API's available in DVB , javatv or ocap
0
votes
0answers
89 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
808 views

Fetching the dimensions of a H264Video stream

I am trying to fetch the dimensions (Height and width) from a H264 stream. I know that to fetch the same details from a mpeg2 stream you have to look at the four bytes following the sequence header ...
0
votes
1answer
57 views

How to use mpeg.org's mpeg2v12 decoder API?

I have downloaded mpeg.org standard codec source code mpeg2v12 from http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html I am now looking for examples of how to use it's decoder API to read ...
0
votes
3answers
342 views

decode MPEG1/2 video with Media Foundation

I am using Media Foundation to play videos. On windows 7 some videos encoded with Mpeg1/Mpeg2 PS and Windows Media Player can play them, but Media Foundation does not(I tried to register a stub ...
0
votes
2answers
854 views

best way to build graph for MPEG2 transport stream

on windows 7 the windows media player supports .ts files very well, in the sense that windows media player knows how to handle such files without any additional codec packs. however if I try to use ...
0
votes
2answers
273 views

RTP Stream… MPEG-2 or MPEG-4?

I'm using RTP TS (Payload 33) to stream some video files in MPEG-2 and MPEG-4, and then perform some tasks over them. How could I know what type of video (MPEG-2 o MPEG-4) is inside the RTP stream I ...
0
votes
1answer
305 views

Problem with MPEG2/MP4 video Demux

I've been working with Directshow for some time now. I've been working with codes (GMFBridge), and I recently started working with mp4demux. I saw it does a good work demuxing many compressed types, ...