
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (54)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (10397)
-
avfilter/f_setcmd : fix null pointer dereference on using dash as interval
8 février 2017, par Marton Balint -
How Akamei is packaging HLS and DASH videos ?
27 décembre 2022, par Ahmed MahmoudLatlert I've been trying to create my own simple streaming service which converts an mp4 video to HLS or DASH. For the sake of simplicity, let's focus on only HLS.


Apple is the the one how created HLS (HTTP Live Streaming) which consists of a different resulotions playlist files, and each file consists of seperate sepemts (ts, mp4 or m4a) each segment is a time range of the original video.


I've noticed the Akamei are using the same mp4 video and a query param
range
to range over the video segements.

Example of a typical segments playlist :


#EXTM3U
#EXT-X-TARGETDURATION:6
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:1
#EXT-X-INDEPENDENT-SEGMENTS
#EXTINF:6.92,
240p_noaudio_dash1.ts

#EXT-X-ENDLIST



Example of Akamei playlist :


#EXTM3U
#EXT-X-VERSION:6
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:6
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-MAP:URI="../../../parcel/video/78619exa.mp4?r=dXMtd2VzdDE%3D&range=0-830"
#EXTINF:6.066667
../../../parcel/video/78619exa.mp4?r=dXMtd2VzdDE%3D&range=5975-2400598
#EXTINF:6.066667
../../../parcel/video/78619exa.mp4?r=dXMtd2VzdDE%3D&range=2400599-4512749
#EXTINF:6.033333
../../../parcel/video/78619exa.mp4?r=dXMtd2VzdDE%3D&range=4512750-6575755
#EXTINF:6.066667
../../../parcel/video/78619exa.mp4?r=dXMtd2VzdDE%3D&range=6575756-8651671
#EXT-X-ENDLIST



How Akamei is gementing the same video on the fly to stream HLS and DASH ?


I searched and read the HLS Specifications with no luck.


-
movenc : Add support for writing sidx atoms for DASH segments
5 octobre 2014, par Martin Storsjömovenc : Add support for writing sidx atoms for DASH segments
A flag "dash" is added, which enables the necessary flags for
creating DASH compatible fragments.When this is enabled, one sidx atom is written for each track
before every moof atom.Signed-off-by : Martin Storsjö <martin@martin.st>