
Recherche avancée
Autres articles (57)
-
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 -
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 : (...) -
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 (...)
Sur d’autres sites (5575)
-
ffmpeg : How to change video duration (slow-down or speed-up) to exact value ?
2 février 2017, par MooI have miltiple videos with different durations and need to always set it to be exactly 10 seconds.
I know that I can use
-filter:v "setpts=speed*duration"
but is there any way to make a universal one-line function to convert any-duration video to 10 seconds video ? -
Overlaying video with text - ffmpeg speed
12 février 2017, par SebadcI’m developing an app that has a functionality similar to Snapchat’s, in which you can add text to an existing video and save it on your phone.
I got this to work using ffmpeg’s "-drawtext" filter. The problem is that I’m getting a noticable delay (20 seconds or so) when adding text to videos, even though they are not too big (around 10 seconds length).
Can anyone point me in the right direction on how to reduce this delay ? Taking Snapchat as reference, they overlay high quality videos with text with little to no delay.
I’ve read about extracting the video’s frames and overlaying them manually, but shouldn’t that take longer ?
Thank you for your help.
-
How to optimize/speed up ffmpeg resizing
16 février 2017, par ALMI am trying to quickly compress
mp4
videos and wanted to know if there is a better way than I am currently using.ffmpeg -i orig.mp4 -preset ultrafast -vf scale=iw/5:-2 out.mp4
This is currently being run for videos around 2-4 minutes long but I would like to get it as quick as possible. Are there other settings for
ffmpeg
I should use ?
This is running on a i7 system with external GPU.Thank you