Recherche avancée

Médias (91)

Autres articles (72)

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

  • 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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (9224)

  • Stretch Subtitles Timing by Factor

    3 août 2022, par Matt McManis

    I'm muxing an mkv video, but the Subtitle .ssa file is out of sync by around 1 second by the end of the video.

    



    Delaying the subtitles by 1 second in the beginning is not enough, the timing needs to be stretched to fix an exponentially growing delay. Sync starts out fine in the beginning, but a few milliseconds delay multiplies for each minute that passes.

    



    I fixed them using MKVToolNix with Stretch 0.999.

    




    



    How can I stretch Subtitles using FFmpeg ?

    



    I saw here how to stretch audio by a factor the same way. ffmpeg, stretch audio to x seconds

    



    I'm using something like this :

    



    ffmpeg -y 

-fflags +genpts 

-i "video.m4v"  
-i "audio.ac3" 
-i "subs.ssa" 

-c:v copy 
-c:a copy 
-c:s copy 

-map 0:v? 
-map 1:a? 
-map 2:s?

"video.mkv"


    



    I used -itsoffset -00:00:01.000 to remove a gap in the beginning, but it does not stretch.

    


  • ffplay : fix memleak of non-bitmap subtitles

    4 août 2013, par Marton Balint
    ffplay : fix memleak of non-bitmap subtitles
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • libavformat/nut : Support SSA and ASS subtitles

    22 août 2020, par hax@riseup.net
    libavformat/nut : Support SSA and ASS subtitles
    

    ffmpeg documentation says the NUT container supports SubStation Alpha
    This brings actual functionality in line with documentation.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/nut.c