
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (28)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5459)
-
Send info from ffmpeg to text file & then parsing into a new file
26 octobre 2023, par PrestonI am trying to scan a directory of .mkv files and output the volume information to out.txt and then parse out.txt for volume_max and send it to log.txt using


for %i in (*.mkv) do ffmpeg -i "%i" -af "volumedetect" -vn -sn -dn -f 1>> out.txt 2>&1 | findstr max_volume out.txt > log.txt



but I keep getting the error(s) :


Missing argument for option 'f'.
Error splitting the argument list: Invalid argument



when it runs the ffmpeg command.


I do get the out.txt file but it's not complete information for each file that's processed. Also, the log.txt file is always 0 bytes, I assume because out.txt doesn't get to the point of generating the max_volume information for each file before erroring.


I know it's got to be something simple but I can't see it. Can anyone shed a bit of light on what I might be doing wrong here ? Thanks !


-
Revision 2fc3a18653 : Removing unused vp9_mcomp_x86.h file. We don't use declarations from this file.
14 avril 2014, par Dmitry KovalevChanged Paths :
Delete /vp9/encoder/x86/vp9_mcomp_x86.h
Modify /vp9/vp9cx.mk
Removing unused vp9_mcomp_x86.h file.We don't use declarations from this file. The real declarations
(differently named) are in vp9_rtcd_defs.pl, e.g. vp9_full_search_sad.Change-Id : I73cbf064305710ba20747233cfdbe67366f069a0
-
Merge the .mp4 video file with the .srt file in Hebrew language
18 octobre 2023, par ZONEXI am looking for a solution using Python or CMD with FFmpeg to merge my Hebrew language .srt file with my .mp4 file.
Thanks for everyone !.


I have tried using this command


ffmpeg -i show.mp4 -vf "subtitles=show.srt:force_style='FontName=Arial,FontSize=24,PrimaryColour=&H00FFFF00&'" -c:v libx264 -c:a aac -strict experimental -scodec mov_text mysubtitledmovie.mp4


However, I encountered the error message : 'Invalid UTF-8 in decoded subtitles.' I understand that I need to add Hebrew encoding support, but I haven't found how to do that.


it's important to me that it'll be very fast process to add the .srt Hebrew file to .mp4 file.