
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (76)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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
Sur d’autres sites (7909)
-
Is there a way to add watermark to all videos in Google Drive’s folder ?
30 avril 2015, par whitesiroiIs there a way to add watermark to all videos in Google Drive’s folder ?
I found similar service, but it works only with pictures, pdfs - Wappwolf
Maybe, it’s possible to do by Google Apps Script or some other services (like ffmpeg) ?
-
Revision a8083449e9 : fix x86-darwin* build vp9_variance_sse2.c contains a mix of intrinsics and refe
5 septembre 2014, par James ZernChanged Paths :
Modify /vp9/common/vp9_rtcd_defs.pl
fix x86-darwin* buildvp9_variance_sse2.c contains a mix of intrinsics and references to
assembly which uses x86inc.asm ; it’s conditionally included as a result.Change-Id : I254451483a65881c0b8e18e27bf0c3ddef60c4ec
-
Troubleshooting ffmpeg batch-file. mkv to mp4 conversion with subtitle hardcode
3 août 2019, par Dog8MyCodeI am trying to batch convert a large number of .mkv video files to .mp4 while hard coding the subtitles included in the .mkv files. I would like to retain as much quality as possible.
I am not an adapt at using ffmpeg or writing batch files, so I have been searching online for batch files which will do what I need. I found some which successfully convert without the subtitles, and I found one that included the command for hard coding the subtitles, but that one also had excessive commands that I didn’t want to delve into, so I am attempting to combined the relevant parts of the two scripts. That is where the problem is obviously coming from.
for %%a in (*.mkv) do ffmpeg -i "%%~a" -vf subtitles=%%~na.mkv copy -c:a aac -q:a 100 "%%~na.mp4"
pauseIt is worth noting that the script was originally :
for %%a in (*.mkv) do ffmpeg -i "%%~a" -vcodec copy -c:a aac -q:a 100 "%%~na.mp4"
pauseBut I changed it as best I could to include a section of script I found which should apparently hard code the subtitles. My lack of knowledge about how this scripting language actually functions probably just made me insert the command in the wrong place or in the wrong way. I hope that background information makes this problem easier to solve.
Expected results : convert each .mkv file in the current folder and leave the .mp4 file in the same folder.
Actual results :
[NULL @ 0000026a399f1440] Unable to find a suitable output format for 'copy': Invalid argument.