Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (82)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11836)

  • avfilter/f_setcmd : fix null pointer dereference on using dash as interval

    8 février 2017, par Marton Balint
    avfilter/f_setcmd : fix null pointer dereference on using dash as interval
    

    Fixes Coverity CID 1396259.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/f_sendcmd.c
  • 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;

  • 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