
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (35)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (7373)
-
Merge commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’
16 décembre 2013, par Michael NiedermayerMerge commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’
* commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’ :
Bump major of libavfilter for reference counted buffer API changes.Conflicts :
libavfilter/version.hMerged-by : Michael Niedermayer <michaelni@gmx.at>
-
avutil/fifo : delay addition of const from 78d3453c4a2efef9bc079e8f3458653beafcf990...
14 mai 2014, par Michael Niedermayer -
ffmpeg to embed subtitles [closed]
29 octobre 2023, par zanothIntend to collect some stuff for academical purpose, to introduce in a seminary.
Attempting to embed subtitles in the frames of a mp4 file, below some commands that i've been tried out :


ffmpeg -i input.mp4 -vf subtitles=subt.srt output.mp4 

ffmpeg -i VID_20230918_161450.mp4 -f srt -i subtitles1.srt -map 0:0 -map 0:1 -c:v copy -c:a copy -c:s mov_text output.mp4

ffmpeg -i seu_video.mp4 -vf "subtitles=seu_arquivo.srt" -c:v libx264 -c:a aac -strict experimental -b:a 192k -y seu_video_com_legendas.mp4



...according to the major issues/responses/or "oracles" around the web.


With the first one, i got as response :




[AVFilterGraph @ 0x557e87157240] No such filter : 'subtitles1.srt' < br/> > Error reinitializing filters !




The second creates the output.mp4 but it comes without subtitles.


The third, surprisingly, was well succed, for a moment. I will explain :
as i'd to translate the video, I wanted to conduct some tests... At the first, the mp4 had a little more than few seconds, which was well succed. Calling the purposed video, it brokes :




[Parsed_subtitles_0 @ 0x558e29010280] Unable to open subtitles1.srt




...subtitles.srt which is exatcly the same file tried firstly.


"Phantonessly", both of they, the test and the purposed video ones, doens't work anymore.


I made up some changes here and there, but for summarize is it.
The SRT file have none syntax erros, as you can see :




1

0:0:0.000 —> 0:3:0.000

test, teste, teste, á ?



It's for academical purposes.


Thanks.