Recherche avancée

Médias (91)

Autres articles (44)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5363)

  • doc/muxers : fix docs format for DASH muxer

    28 juin 2019, par Jun Zhao
    doc/muxers : fix docs format for DASH muxer
    

    fix docs format for DASH muxer

    Reviewed-by : Gyan Doshi <ffmpeg@gyani.pro>
    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] doc/muxers.texi
  • Generate MPEG-DASH segments when requested [closed]

    16 septembre 2024, par John Smith

    Up front disclaimer : this question is almost identical to the one here : Generate single MPEG-Dash segment with ffmpeg but it seems that ffmpeg has updated over time and now the answer provided by Coumeu is no longer accurate.

    &#xA;

    Using ffmpeg, I am attempting to "lazily create" the segments needed for MPEG DASH playback. I have a static manifest (MPD) which includes SegmentTemplates for 1 video and 1 audio stream.

    &#xA;

    Only when the endpoints provided in the SegmentTemplate for init or media segments is hit it will generate this segment. In other words, nothing is processed up front.

    &#xA;

    I am creating the init segment using the following movflags :

    &#xA;

    &#x2B;frag_keyframe&#x2B;faststart&#x2B;skip_trailer &#xA;

    &#xA;

    I am creating the media segment using the following movflags

    &#xA;

    &#x2B;frag_keyframe&#x2B;default_base_moof&#x2B;delay_moov&#x2B;skip_trailer&#x2B;dash&#x2B;global_sidx&#xA;

    &#xA;

    and the following additional commands any segment type :

    &#xA;

    -map_metadata -1 -copyts -start_at_zero -map 0:${streamIndex}&#xA;

    &#xA;

    This results in playable video with the correct duration, but it seems to be switching fragments quite fast. On average one fragment per second. When I omit the delay_moov flag, the video also starts glitching, like it's stepping over I-Frames.

    &#xA;

    My observations when I look at the boxes :

    &#xA;

      &#xA;
    • earliest_presentation_time (sidx box) is 0 for all segments
    • &#xA;

    • base_media_decode_time (moof->traf->tfdt box) is 0 for all segments
    • &#xA;

    &#xA;

    I'm looking for either the correct command line to create segments on the fly, or hacky ways to get it done right if ffmpeg doesn't provide it out of the box. Even information about what to look for would be helpful, because my knowledge about mp4 and MPEG-DASH is running out.

    &#xA;

  • Reduce the number of chunk-stream files when converting to mpeg-dash

    10 juillet 2024, par NSS

    My command : ffmpeg -i input_file.mp4 -c:v libx264 -c:a aac -b:v 6000k -b:a 192k -f dash output.mpd

    &#xA;

    When I convert a mpeg4 file into mpeg-dash, ffmpeg generates a certain number of .m4s files (e.g chunk-stream0-00003.m4s) of different sizes. If I convert a really large file ffmpeg can generate thousands of files like that. My questions are :

    &#xA;

      &#xA;
    1. how can I set that no .m4s file is more than 5MB ? I need this to stream a smaller chunk faster over HTTP.
    2. &#xA;

    3. how can I reduce the number of generated .m4s files ? I need this because the custom storage has a limit on files in a directory.
    4. &#xA;

    &#xA;