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
2
votes
1 answer

ffprobe does not show packet size of a mpeg transport stream as 188 bytes

I created a transport stream from a H.264 encoded file using the following ffmpeg command: ffmpeg -i encoded.mp4 -c copy -map 0 -vbsf h264_mp4toannexb mpegts sample.ts Now I want to check the frames and packets within the transport stream. I used…
CompNet
  • 77
  • 1
  • 7
2
votes
0 answers

How to stream video(only) using xuggler

I'm trying to multicast a video using xuggler. So far I'm able to read the video frames in BufferImage object. But I don't understand how to create a mpeg-2 ts stream and send to network. My client program doesn't support rtsp or rtmp so I need to…
shantanu
  • 2,408
  • 2
  • 26
  • 56
2
votes
1 answer

HLS implementation with FFmpeg

I am trying to implement HLS using FFmpeg for transcoding + segmenting but have been facing a couple of issues that have been bugging me for the past week. Issue Webserver currently receives live MP4 fragments being recorded on-the-go and needs to…
Joe
  • 2,386
  • 1
  • 22
  • 33
2
votes
1 answer

Fetch H.264 video dimensions from MPEG-TS stream with corrupted SPS

I am writing an MPEG-TS to MP4 transmuxer, which is mostly working insofar as I get playable MP4 files out of it which have the proper dimensions and playback speed and so forth. However, I am not sure how VLC (or any other video player I've tested…
Logan R. Kearsley
  • 682
  • 1
  • 5
  • 19
2
votes
1 answer

How are access units aligned within PES packets in Apple's HLS?

Does Apple specify this? How many access units should one put in a PES packet payload? Also, I'm wondering which prefix start codes (if any) are present in PES packets. I assume that the one preceding the first NAL unit within an access unit is…
matt-pielat
  • 1,659
  • 3
  • 20
  • 33
2
votes
4 answers

How to find resolution and framerate values in H.264 MPEG-2 TS?

I'm working on a MPEG-2 TS video containing a H.264 stream, and I'm looking for video properties stored in the stream, by scanning PAT, PMT, PES, etc. I'm able to read PAT, PMT, and elementary streams type and PID. Here I would like to find the…
Velcro
  • 546
  • 1
  • 8
  • 27
2
votes
1 answer

Manual encoding into MPEG-TS

SO... I am trying to take a H264 Annex B byte stream video and encode it into MPEG-TS in pure Java. My goals is to create a minimal MPEG-TS, Single Program, valid stream and to not include any timing information information (PCR, PTS, DTS). I am…
Lane
  • 685
  • 2
  • 10
  • 25
2
votes
1 answer

FFMpeg's stream segmenter

I'm using FFMpeg to segment a WAV file into mp3s for use in HTTP Live Streaming. I'm using this command: ffmpeg -i input.wav -c:a libmp3lame -b:a 128k -map 0:0 -f segment -segment_time 10 -segment_list outputlist.m3u8 -segment_format mp3…
MouseTech
  • 110
  • 2
  • 8
2
votes
1 answer

Is it possible to embed the length of video in a transport stream?

I noticed many players do not display video length when playing ts. Is it possible to embed the length of video in a transport stream so that video player can use that information?
Aftershock
  • 5,205
  • 4
  • 51
  • 64
2
votes
2 answers

Android MediaRecorder produces unplayable MPEG2TS output

I'm using MediaRecorder to record video with a MPEG2TS container on a Samsung Galaxy Note 2. It initializes without any errors, and actually writes data to the file (the file grows to several MB). However, the file is not playable in any media…
Dmitry Brant
  • 7,612
  • 2
  • 29
  • 47
2
votes
2 answers

Need help transcoding Red5 RTMP stream to MPEG2-TS

Me and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8. I use Flash Media Live Encoder to broadcast to Red5's oflaDemo…
user2490474
2
votes
1 answer

Convert MPEG4 to MPEGTS on Android with FFmpeg

Ok, so obviously I know very little to none about ffmpeg API when I made the original post... it is quite overwhelming when one starts learning about digital media and conversion details. After reading quite a bit more and going through ffmpeg…
Vadym
  • 964
  • 1
  • 13
  • 31
2
votes
8 answers

media players that supports MPEG-DASH

I want DASH MPD files to be played and tested on to different DASH supported clients. I have tested with VLC dash plugin. Are there any other players/plugins that supports and plays DASH MPD files?
bhavesh369
  • 319
  • 1
  • 2
  • 15
2
votes
1 answer

FFMPEG & JNI : How to decode from URL

I'm trying to make an android application that uses the FFMPEG for decoding videos that are not supported by Android ( not on all the devices at least ): MPEG-TS & h264 Main Profile. So, until now, I was able to use FFMPEG from JNI to decode some…
2
votes
1 answer

H.264 Video in MPEG2TS container

I have a hardware codec that encodes video in H.264 (Baseline profile, level 3) which I package into MPEG2 Transport Stream so that I stream it to iDevices (HTTP Live Streaming). The problem I have is that the video plays only on the more recent…