Recherche avancée

Médias (91)

Autres articles (97)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

Sur d’autres sites (4761)

  • avcodec/libsvtav1 : pass pict_type to library

    25 avril 2022, par Christopher Degawa
    avcodec/libsvtav1 : pass pict_type to library
    

    match the behavior of SvtAv1EncApp to ensure pic_type is always set
    before passing it to the library.

    The other options for pic_type aren't currently used inside the library,
    so they aren't introduced in this patch.

    Signed-off-by : Christopher Degawa <ccom@randomderp.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libsvtav1.c
  • Embedding Subtitles Permanently with ffmpeg [closed]

    21 avril 2024, par Mert

    I am using ffmpeg to embed subtitles into a video file with the following command :

    &#xA;

    ffmpeg -i video.mp4 -i sub.srt -max_muxing_queue_size 1024 -c:v copy -c:a copy -c:s mov_text out.mp4

    &#xA;

    After that, the subtitles are exists on the out.mp4&#xA;This generates the out.mp4 file with subtitles. However, if I delete the sub.srt file, the subtitles no longer appear in out.mp4. It seems as though the subtitles aren't actually embedded into the video but are still dependent on the sub.srt file.

    &#xA;

    How can I modify the ffmpeg command to ensure that the subtitles are permanently embedded into the video file, even if the sub.srt file is removed afterwards ?

    &#xA;

    I executed the command above, but it resulted with embedding the subtitles based on the existence of sub.srt, When sub.srt is removed, the subtitles are disappearing.

    &#xA;

  • avcodec/qpeg : remove an unnecessary intermediary AVFrame

    17 avril 2020, par James Almer
    avcodec/qpeg : remove an unnecessary intermediary AVFrame
    

    Decoding can be handled directly in the output frame.

    Also ensure flushing cleans the reference frame in all cases.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/qpeg.c