
Recherche avancée
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (15773)
-
Specifying track title or language in MPEG DASH MANIFEST
10 février 2019, par Ramesh NaviI am creating a manifest to playback Adaptive WebM using DASH. Everything working pretty fine but I need language-name/track-name instead of bitrate. Is it supported ? How can update/optimize to support such feature ?
Manifest creation :
ffmpeg \
-f webm_dash_manifest -i webm240.webm \
-f webm_dash_manifest -i webm360.webm \
-f webm_dash_manifest -i webm480.webm \
-f webm_dash_manifest -i webm720.webm \
-f webm_dash_manifest -i audio1.webm \
-f webm_dash_manifest -i audio2.webm \
-f webm_dash_manifest -i audio3.webm \
-f webm_dash_manifest -i audio4.webm \
-c copy -map 0 -map 1 -map 2 -map 3 -map 4 -map 5 -map 6 -map 7 \
-f webm_dash_manifest \
-adaptation_sets "id=0,streams=0,1,2,3 id=1,streams=4,5,6,7" \
manifest.mpdPlayer audio track selection :
-
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>
-
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.