
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (48)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5463)
-
Stretch Subtitles Timing by Factor
3 août 2022, par Matt McManisI'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.

-
How the ffmpeg fix is leading to clearing of teletext subtitles ? [closed]
9 avril 2024, par adarshIm working on the teletext subtitle feature and faced with subs not clearing issue.
https://sourceforge.net/p/zapping/bugs/203/
The player is using ffmpeg and libzvbi library.


Luckily, this issue was fixed in ffmpeg- https://github.com/FFmpeg/FFmpeg/commit/b1e0e216462a989a39e7b413aef6d32f8cedc154


and also in zvbi :
https://github.com/zapping-vbi/zvbi/commit/40a6ab0200c46b67b059b5b1fb15793ce780892a


I know the root cause and fix in zvbi library, and how it is ignoring c4 flag in case the same page no.


But i want to understand how the ffmpeg fix is working ?


-
Ffmpeg can't convert at 24fps AND burn a subtitles
14 novembre 2020, par Oshida_BCFi like to save my anime but i don't like when the subs are softburned and if the video is in mkv (it's heavier)


so i made some .bat that encode the video and burn the subtitles.


cd To convert
for %%a in ("*.mkv") do ffmpeg -i "%%a" -vf subtitles="%%a" -crf 18 -c:v libx264 -c:a aac -b:a 256k ../Converted/"%%~na.mp4"
pause



this command burn the subtitles and it's perfect


cd To convert
for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter:v fps=fps=24 -crf 18 -c:v libx264 -c:a aac -b:a 256k ../Converted/"%%~na.mp4"
pause



this one encode at 24 fps and it's perfect too


but this one


cd To convert
for %%a in ("*.mkv") do ffmpeg -i "%%a" -vf subtitles="%%a" -crf 18 -c:v libx264 -c:a aac -b:a 256k -filter:v fps=fps=24 ../Converted/"%%~na.mp4"
pause



doesn't work.


and i have no idea


it convert the video in mp4, at 24fps
but it "forgot" the subtitles


do there is some commands that aren't compatible and cancel each other ?


for now i burn the sub on the video and i convert at 24 fps after.
but being able to do the 2 at the same time would save me a lot of time.