Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (91)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (15967)

  • avformat/dashdec : Ensure strings are zero-terminated

    2 mars 2021, par Andreas Rheinhardt
    avformat/dashdec : Ensure strings are zero-terminated
    

    strncpy only ensures that one does not write beyond the end of the
    destination buffer ; in case of truncation it does not zero-terminate
    the destination buffer. This makes using it the way it is now in the
    DASH demuxer dangerous. So use av_strlcpy instead.

    Also don't write anything if there is no id : The buffer has already been
    zeroed initially.

    The DASH testset from the Universität Klagenfurt contains samples with
    ids that are too long. E.g.
    http://ftp.itec.aau.at/datasets/DASHDataset2014/TearsOfSteel/1sec/TearsOfSteel_1s_simple_2014_05_09.mpd

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/dashdec.c
  • dashenc : Use pts for MPD timeline timestamps

    17 novembre 2014, par Martin Storsjö
    dashenc : Use pts for MPD timeline timestamps
    

    This should be more correct. This also should give more sensible
    switching between video streams with different amount of b-frame
    delay.

    The current dash.js release (1.2.0) fails to start playback of
    such files from the start (if the start pts is > 0), but this has
    been fixed in the current git version of dash.js.

    Also enable the use of edit lists, so that streams in many cases
    start at pts=0.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/dashenc.c
  • HLS audio stream choppy in iOS and Mac Safari - but ok in Chrome, VLC

    30 avril 2024, par Elliot

    I have an HLS stream that seems to have the audio cut out and then return randomly. This only occurs on iOS devices, and Safari on Mac OS. It works fine on Desktop VLC, but not iOS VLC (as in, the audio never cuts out).

    &#xA;

    More confusing still - if we have multiple developers listening to the same HLS stream on different devices at the same time, we all hear the audio cut out and the return at the same time. So clearly something is wrong with the stream itself.

    &#xA;

    We create a dash stream from FFMPEG, and then create an HLS manifest in parallel.

    &#xA;

       transcoder&#xA;            // Right now this is the max we&#x27;ll get&#xA;            .audioBitrate(&#x27;64k&#x27;)&#xA;            // We only have 1 channel&#xA;            .audioChannels(1)&#xA;            // Enable experimental features ldash/lhls&#xA;            .outputOption(&#x27;-strict&#x27;, &#x27;experimental&#x27;)&#xA;            // Set url for syncing UTC timestamps with client&#xA;            .outputOption(&#x27;-utc_timing_url&#x27;, &#x27;https://time.akamai.com/?iso&#x27;)&#xA;            .outputOption(&#x27;-write_prft&#x27;, &#x27;1&#x27;)&#xA;            // Streaming mode&#xA;            .outputOption(&#x27;-streaming&#x27;, &#x27;1&#x27;)&#xA;            // Use segment file template so we dont list all segments in the manifest&#xA;            .outputOption(&#x27;-use_template&#x27;, &#x27;1&#x27;)&#xA;            // Must be disabled for index_correction which is suggested for streaming use case&#xA;            .outputOption(&#x27;-use_timeline&#x27;, &#x27;0&#x27;)&#xA;            // Fix up segment indexes if they drift due to bandwidth changes&#xA;            .outputOption(&#x27;-index_correction&#x27;, &#x27;1&#x27;)&#xA;            //  Use 6 second segments, for live this shouldn&#x27;t matter but this is Apple&#x27;s suggested&#xA;            //  value for HLS&#xA;            .outputOption(&#x27;-seg_duration&#x27;, &#x27;6&#x27;)&#xA;            // Push the frames out as fast as they come in&#xA;            .outputOption(&#x27;-frag_type&#x27;, &#x27;every_frame&#x27;)&#xA;            // Use mp4 segments&#xA;            .outputOption(&#x27;-dash_segment_type&#x27;, &#x27;mp4&#x27;)&#xA;            // Enabled low-latency mode&#xA;            .outputOption(&#x27;-ldash&#x27;, &#x27;1&#x27;)&#xA;            // Output an HLS playlist too&#xA;            .outputOption(&#x27;-hls_playlist&#x27;, this.options.hlsEnabled ? &#x27;1&#x27; : &#x27;0&#x27;)&#xA;            // HLS manifest name&#xA;            .outputOption(&#x27;-hls_master_name&#x27;, &#x27;index.m3u8&#x27;)&#xA;            // Use persistent HTTP connection&#xA;            .outputOption(&#x27;-http_persistent&#x27;, &#x27;1&#x27;)&#xA;            // Do PUTs to the upload endpoint&#xA;            .outputOption(&#x27;-method&#x27;, &#x27;PUT&#x27;)&#xA;            // Dont let an output error hold up the stream&#xA;            .outputOption(&#x27;-ignore_io_errors&#x27;, &#x27;1&#x27;)&#xA;            // Set a timeout for output&#xA;            .outputOption(&#x27;-timeout&#x27;, &#x27;1&#x27;)&#xA;            // DASH format&#xA;            .format(&#x27;dash&#x27;);&#xA;

    &#xA;

    Does anyone have any suggestions for what we should dig into next ?

    &#xA;