Consider a DASH system for which there are N versions of a video file (in an increasing order of quality) and N versions of a corresponding audio file (in an increasing order of quality). Suppose we want to allow the player to choose at any time any chunk of the N video versions and any of the N audio versions. a. If we create files so that the audio is mixed in with the video in a the same file, so server sends only one media stream at given time, how many files will the server need to store? b. If the server instead sends the audio and video streams separately and has the client synchronize the streams, how many files will the server need to store?

Respuesta :

Answer: a) N² files. b) 2N files.

Explanation:

if an user can choose freeely both the video and the audio quality, if they are stored separately, but the user can download any mix of them as a single file, the server must store one audio version for each video version, so it will need to store NxN = N² files.

If, instead, the server can send the audio and video streams separately, so the user can choose one of the N video available, and one of the N audio versions, the server will need to store only N video files + N audio audio files, i.e. , 2 N files.