Questions tagged [mpeg-2]

Questions related to MPEG-2, an ISO/IEC standard for video/audio compression and systems. MPEG-2 standard was successor to MPEG-1 standards. MPEG-2 is at the core of most digital television and DVD formats.

MPEG-2 is a standard for "the generic coding of moving pictures and associated audio information". It describes a combination of lossy video compression and lossy audio data compression methods which permit storage and transmission of movies using currently available storage media and transmission bandwidth.

MPEG-2 is widely used as the format of digital television signals that are broadcast by terrestrial (over-the-air), cable, and direct broadcast satellite TV systems. It also specifies the format of movies and other programs that are distributed on DVD and similar discs.

MPEG-2 systems specification, encompasses MPEG transport stream (used in ATSC/DVB/ISDB/SBTVD broadcasting, and HDV recording on tape) and MPEG program stream (used as container format in file-based media such as hard disk drives, optical discs and flash memory)

Sources:

  1. http://en.wikipedia.org/wiki/MPEG-2
82 questions
0
votes
1 answer

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 some mpeg2 file. I appreciate any code sample you…
0
votes
2 answers

Why are the MPEG-TS specifications not freely available?

I'm looking at doing some MPEG-TS program specific information parsing. I understand wikipedia has some details regarding the syntax structure, but it's just not enough for my usage case, however, it seems like the specifications/standards are not…
Zan
  • 11
  • 3
0
votes
1 answer

Distinguish between MPEG-1 container and MPEG-2 container

I am looking at concrete ways to distinguish between files that use MPEG-1 and MPEG-2 containers as most of the resources that I find suggest that the start code is 00 00 01 BA for both containers. I have tried to convert a video in MP4 container to…
Ajit
  • 251
  • 2
  • 9
0
votes
0 answers

ffmpeg need perfect pixels for LED processing (h264, mpeg 1, 2)

We have .mov with Animation codec and the pixels look great. But the LED media players are looking for h264, mpeg-1 or mpeg2. Is this even possible to get high pixel accuracy? I read a lot of the comments and tried the h264 lossless to no avail.…
0
votes
2 answers

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 receive? Is there any header or field which…
Javi
  • 1
  • 2
0
votes
0 answers

gstreamer-1.0 UDP receiver test pipeline

I want to receive an UDP video stream with gstreamer. Well, the final goal is to play it into a QML page, which in turn use gstreamer as backend. Thus, first I want to test at the low-level. Opening the stream with VLC reveals: MPEG-1/2 Video…
Mark
  • 3,093
  • 4
  • 32
  • 77
0
votes
0 answers

How to encode .yuv video using MPEG-2

I am trying to encode akiyo_cif.yuv video file (resolution 352 x 288) (downloaded from http://trace.eas.asu.edu/yuv/akiyo/akiyo_cif.7z) using mpeg 2 encoder (version 1.1) downloaded from MPEG official site (…
0
votes
0 answers

Splitting and transcoding Mpeg-2 in Java

I want to try to implement parallel (by parts) transcoding of the Mpeg-2 into a sequence of images (jpg/png etc). As far as I see I need to do two steps: Split video into N binary parts Transcode each of them into image. I don't clearly understand…
IgorZ
  • 728
  • 1
  • 11
  • 31
0
votes
0 answers

Why MPEG-2 Encoder decreases fast in Mbit/s

I'm trying to understand how the MPEG-2 works, so I can finish a project which is based on it. First of all I want to understand the MPEG-2. I want to know why the total Mbit/s decreased very fast between 1995 and 2005? It went from 6 Mbit/s to 2…
Tim Dirks
  • 431
  • 1
  • 5
  • 15
0
votes
1 answer

VLC fails to play mpeg-2 correctly

My friend has a problem with playing mpeg-2 files correctly with his VLC player. Audio is playing fluently, but video is fitful. He tried to play same files with Windows Media Player, so he knows that files are OK. Files are stored on SSD disk in…
PObdr
  • 139
  • 8
0
votes
1 answer

How to avoid pumping artifacts when encoding still images into a mpeg-2 video using ffmpeg

I'm encoding a still image into a dvd compliant mpeg stream using a command line like this: ffmpeg.exe -y -loop 1 -t 00:00:30 -r 1 -i "image.jpg" -target pal-dvd -b:v 6000000 video.mpg This generates a video of 30s showing a single still image. When…
Daniel
  • 55
  • 5
0
votes
3 answers

JAVA MP2 playback (native)

I have a problem with MP2 audio files and JAVA. Audio seems to be a pain in JAVA anyway. I tried using JavaLayer and Xuggler to decode and transcode the MP2 file to WAV. Both of which failed. And development of those seems to be not active. Although…
tonihele
  • 49
  • 1
  • 5
0
votes
0 answers

Video files in mpeg2 format on website

I am working on a client's website. I am in a search of video player that could play the mpeg2 videos without having any problem. I have all video files of very heavy size so how can i compress the file size before playing or user downloading in php…
0
votes
0 answers

Extracting sequence header from mpeg video file

I am new too mpeg2dec and I Have been trying to extract sequence header from a video file with mpeg2.h(from libmpeg2) but not getting anywhere. I tried by getting STATE_SEQUENCE and tried to point to that location in the file but could not copy…
poker
  • 23
  • 5
0
votes
1 answer

Finding mpeg 2 packages in matlab with fread

I used a ts analyzer for a .ts file i have with mpeg-2 codec and i found out that it splits in 7311 packets. I m trying to find this through matlab by using fopen to open the ts file in binary and fread to read the file but all i get is a column…