Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (9219)

  • Specifying track title or language in MPEG DASH MANIFEST

    10 février 2019, par Ramesh Navi

    I 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.mpd

    Player audio track selection :

    enter image description here

  • 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>

    • [DH] Changelog
    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
    • [DH] libavformat/version.h
  • How Akamei is packaging HLS and DASH videos ?

    27 décembre 2022, par Ahmed Mahmoud

    Latlert 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.

    &#xA;

    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.

    &#xA;

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

    &#xA;

    Example of a typical segments playlist :

    &#xA;

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

    &#xA;

    Example of Akamei playlist :

    &#xA;

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

    &#xA;

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

    &#xA;

    I searched and read the HLS Specifications with no luck.

    &#xA;