Recherche avancée

Médias (91)

Autres articles (45)

  • 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 (9989)

  • lavf/matroskaenc : Fix Cues on Audio for WebM DASH

    6 juin 2014, par Vignesh Venkatasubramanian
    lavf/matroskaenc : Fix Cues on Audio for WebM DASH
    

    Fix a change that was broken by [1]. Cues must be added for audio frames
    on cluster start for WebM when the DASH flag is passed. Restoring
    correct functionality.

    [1] http://goo.gl/xYLq7Z

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskaenc.c
  • Does MPEG-Dash live have ?begin parameter in their URI to start playback from a particular position

    26 février 2023, par Raghavendra Ganiga

    I have a MPEG-DASH URI like below

    &#xA;

    https://test.com/default/index.mpd?begin=20230222T120430

    &#xA;

    where i have begin parameter specifying from where to start the playback. This is a dynamic MPD.

    &#xA;

    I want to know is begin parameter a standard parameter of MPEG-DASH. If yes, then in which document this parameter is specified.

    &#xA;

  • How to set segment duration of a DASH stream using ffmpeg ?

    25 juillet 2024, par ipartola

    I am trying to convert a video to a live DASH stream using ffmpeg. The command looks like this :

    &#xA;

    ffmpeg -i input.mp4 -preset veryfast \&#xA;-c:v libx264 -pix_fmt yuv420p -map 0:v:0 \&#xA;-s:0 1280x720 -b:v:0 2M -maxrate:0 2.5M -bufsize:0 4M \&#xA;-use_template 1 -use_timeline 1 -seg_duration 1 -f dash foo/stream.mpd&#xA;

    &#xA;

    I would like to have the segment duration be 1 second long. However the above command seems to produce chunk files about 8 seconds long instead. However if I change the command to the following (adding -g 5) :

    &#xA;

    ffmpeg -i input.mp4 -preset veryfast \&#xA;-c:v libx264 -pix_fmt yuv420p -map 0:v:0 \&#xA;-s:0 1280x720 -b:v:0 2M -maxrate:0 2.5M -bufsize:0 4M \&#xA;-g 5 \&#xA;-use_template 1 -use_timeline 1 -seg_duration 1 -f dash foo/stream.mpd&#xA;

    &#xA;

    I get chunk files that are much closer to 1 second long. Obviously this isn't ideal since that will produce a keyframe every 5 frames. So :

    &#xA;

    a) I don't understand the relationship between seg_duration and keyframe interval. Why is ffmpeg not automatically just putting a keyframe at the beginning of each chunk ?

    &#xA;

    b) How do I get the chunk/segment length I want ?

    &#xA;