
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 (38)
-
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (6927)
-
Where to get an up to date php_ffmpeg.dll
25 avril 2015, par HeidiI have Windows 2008 R2 64 bit.
I have installed ResourceSpace 7.1.6513 which requires PHP & FFMPEG. This is not a ResourceSpace question.I have installed PHP 5.4.40 VC9 x86 non thread safe (as advised by ResourceSpace wiki & GG).
I have installed FFMPEG version N-71664-gcd69c0e (64 bit static)Now it seems that FFMPEG and PHP need to have a php_ffmpeg.dll to work in Windows.
Is that true ?If so, where do I get one that will work with my FFMPEG & PHP ? I have looked here and followed old threads, and have found random php_ffmpeg.dlls but I cannot confirm that they are compatible.
The file taht I found, I have put it c :\php\ext and updated php.ini with extension=php_ffmpeg.dll -
Using FFmpeg to join images with different timly distance
28 septembre 2015, par magic_alI have a set of images from which I try to create a slide show. On this website I found the following command to do so :
ffmpeg -framerate 1/5 -start_number 126 -i img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4
I got it working fine. But in my case I need to have each images to be displayed a different period of time. How can I achieve this ?
-
ffmpeg - how to set histogram size ?
7 avril 2015, par Pedro LobitoI’m trying to add a histogram to a video using ffmpeg, I’m following this example but I’m having trouble setting the size of the histogram, this is code I’m using :
ffmpeg -y -report -i input.mp4 -vf "split[a][b];[a]format=gray,histogram=mode=waveform:waveform_mode=column,vflip,split[c][d];[b]pad=iw:ih+256[padded];[c]geq=g=1:b=1[red];[d]geq=r=1:b=1,crop=in_w:220:0:16[mid];[red][mid]overlay=0:16[wave];[padded][wave]overlay=0:H-h" output.mp4
I’ve tried to play around with the
pad
andcrop
values without luck.
How can I set the size of histogram to 100 pixels only ?