
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (36)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (13072)
-
Embedding Subtitles Permanently with ffmpeg [closed]
21 avril 2024, par MertI am using ffmpeg to embed subtitles into a video file with the following command :


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


After that, the subtitles are exists on the
out.mp4

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.

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 ?


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

-
use ffmpeg movie= with a remote file [duplicate]
19 juillet 2020, par galipmediaI have a use case where I would like to specify several files within a complexFilter in ffmpeg.


movie='/local/file.mp4' works fine 
movie='https://www.some.com/file.mp4" fails with "No such file or directory"



is there any workaround for this ? Obviously I can include the files as -i inputs but that is not what I am looking for.


-
ffmpeg how to convert pgs subtitles to srt
20 mai 2015, par 8ofspadesI’m having an issue with extracting subtitles from ffmpeg 2.6.2. I have an mkv file with 6 subtitle streams, and I would like to generate srt files for all of them. My ffprobe output for the streams is below.
Stream #0:0(eng): Video: h264 (High), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 1k tbn, 59.94 tbc (default)
Stream #0:1(ita): Audio: ac3, 48000 Hz, stereo, fltp, 448 kb/s (default)
Stream #0:2(ita): Audio: dts (DTS), 48000 Hz, 5.0(side), fltp, 1536 kb/s
Metadata:
title : Italian
Stream #0:3(rus): Subtitle: subrip (default)
Metadata:
title : Russian
Stream #0:4(ita): Subtitle: hdmv_pgs_subtitle
Metadata:
title : Italian
Stream #0:5(eng): Subtitle: hdmv_pgs_subtitle
Metadata:
title : English
Stream #0:6(fre): Subtitle: hdmv_pgs_subtitle
Metadata:
title : French
Stream #0:7(ger): Subtitle: hdmv_pgs_subtitle
Metadata:
title : German
Stream #0:8(spa): Subtitle: hdmv_pgs_subtitle
Metadata:
title : SpanishThe russian (subrip) subtitles work fine with
ffmpeg -i input.mkv -c:s:0 copy sub_ru.srt
however when I try and select and of the other (pgs) subtitle streams, it ignores the stream I selected and outputs the russian (stream 0:3) subtitles.
I’m not sure if this an issue with my ffmpeg command or the fact that the other streams are pgs.
Thanks