Can any one tell me what is the advantage of using Elementary video streams(Demuxed Stream) over transport streams(MUXed stream) in internet video streaming? Thanks in advance.
Elementary Streams vs Transport Streams in Video Streaming
1.7k Views Asked by Arjuna At
1
There are 1 best solutions below
Related Questions in VIDEO
- How to open and read video stream in Matlab
- Extract bytes of specific stream from mpegts file using ffmpeg
- AVQueuePlayer crashes when I try to observe the start of the next video: AVPlayerItem was deallocated with observers
- How to get the time stamp of each frame of a GoPro video in MATLAB?
- DFP Videos Ads Internal error
- Get youtube video information using javascript and Youtube-API
- YouTube views not counting on Wordpress embed
- Videos not working on phones using HTML
- How to track multiple youtube videos in google analytics
- Cloudfront stream only part of the video
- Changing switch statement to include both mp4 and ogg files
- How to detect squares in video with OpenCV?
- Saving iOS video buffer
- dynamic video source change issue in azure media player
- Video Editing For Android
Related Questions in VIDEO-STREAMING
- Image based steganography that survives resizing?
- Strange picture noise at the beginning of live stream
- Android: Video Player Like Dailymotion App
- Cloudfront stream only part of the video
- Realtime/zero-latency video stream: what codec parameters to use?
- How to toggle mjpg_streamer on and off
- Cam streaming Flash client/widget
- ffserver - invalid codec name libvpx
- Only play rtsp video using VideoView or MediaPlayer after 3 minutes or more
- Why so many partial content requests in Firefox when streaming mp4 video on Apache?
- IIS 8 video streaming concurrency
- Why segment files into chunks for HTTP streaming?
- Error being thrown by ffmpeg and ffserver, not getting a stream
- How to send HTTP chunked response to emulate a video stream using Proxygen and Folly?
- Youtube Stats for Nerds: What does the (137/140) behind "DASH: yes" stand for?
Related Questions in TRANSPORT-STREAM
- iOS, how to convert mp4 file into ts (transport stream) without ffmpeg?
- How to render H.264 transport streams into an HTML5 player
- Detecting I-frame data in an MPEG-4 transport stream
- How to run this tsduck shell command containing quotes with subprocess.run in Python
- Extracting AC-3 from MPEG Transport Stream
- Unable to extract KLV data from .mpg file
- Can I use TSDuck's tsp tool for HLS with token-based authentication?
- Get TS packets into buffer from libavformat
- capturing network packets with accurate timestamp
- Can I have a rawvideo stream in a MPEG TS container
- How to stream live TS (transport stream) files on HTML player?
- Writing a file in byte mode and placing a line separator in Python
- Elementary Streams vs Transport Streams in Video Streaming
- Can't write packet with unknown timestamp av_interleaved_write_frame(): Invalid argument
- File type not recognized when using ffprobe with Python
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Elementary streams and Transport streams are terms that originated in the broadcast world - the transport stream allows multiple packetised elementary streams to be carried in a broadcast signal and all provided error correction etc functions. So it is not a case one one versus the other, they are both parts of the overall video deliver technology.
Most internet video streaming, certainly for commercial and video hosting sites, actually uses HLS or DASH streaming now.
These are streaming protocols which deliver the media in fragments or chunks and are referred to generally as Adjustable Bit Rate streaming protocols (ABR).
ABR allows the client device or player download the video in chunks, e.g 10 second chunks, but the server provides each chunk in multiple different bit rate versions. The player can select the next chunk from the bit rate most appropriate to the current network conditions.
So the elementary streams are 'wrapped' in a container, usually an MP4 like container, and then the container is transported by or wrapped in the ABR streaming protocol.
All this seems like a lot of extra overhead, but some of the advantages are:
It will depend on the application, but for many the first point is probably the most important - most clients devices and players do not support elementary stream playback out of the box.