
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (49)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (8844)
-
FFMPEG Images to video - 'file not found' error in command - I'm sure it's something obvious
12 décembre 2014, par jgadsI’m running this command on my Android phone with an FFmpeg library. It works great for combining videos into one resultant video, but not with images. Here’s the command :
-framerate 4 -start_number 0 -i '/storage/emulated/0/Pictures/phototest/%3d.jpg' -c:v libx264 -r 30 -pix_fmt yuv420p /storage/emulated/0/Pictures/phototest/result.mp4
The error is :
'/storage/emulated/0/Pictures/phototest/%3d.jpg': No such file or directory
The images are just consecutively named, e.g. 1.jpg, 2.jpg and so on, and they’re definitely there - though I think FFMPEG is taking the image file name literally rather than interpreting it. I’m missing something obvious here, I’m sure of it. I looked round StackOverflow and the whole ’%3d’ wildcard is supposed to work ! Any ideas ?
EDIT : Running the command with just the first image (1.jpg) works fine. Definitely an issue with the wildcard. In addition, running the command without the image path in quotes doesn’t seem to work either.
EDIT 2 : Adding ’img’ in front of every file so that it it’s ’img1.jpg’, ’img2.jpg’ and so on doesn’t work either. Is there a way to pass multiple images separated by ’|’ like the concat command ?
-
FFMPEG Images to video - 'file not found' error in command - I'm sure it's something obvious
8 août 2017, par jgadsI’m running this command on my Android phone with an FFmpeg library. It works great for combining videos into one resultant video, but not with images. Here’s the command :
-framerate 4 -start_number 0 -i '/storage/emulated/0/Pictures/phototest/%3d.jpg' -c:v libx264 -r 30 -pix_fmt yuv420p /storage/emulated/0/Pictures/phototest/result.mp4
The error is :
'/storage/emulated/0/Pictures/phototest/%3d.jpg': No such file or directory
The images are just consecutively named, e.g. 1.jpg, 2.jpg and so on, and they’re definitely there - though I think FFMPEG is taking the image file name literally rather than interpreting it. I’m missing something obvious here, I’m sure of it. I looked round StackOverflow and the whole ’%3d’ wildcard is supposed to work ! Any ideas ?
EDIT : Running the command with just the first image (1.jpg) works fine. Definitely an issue with the wildcard. In addition, running the command without the image path in quotes doesn’t seem to work either.
EDIT 2 : Adding ’img’ in front of every file so that it it’s ’img1.jpg’, ’img2.jpg’ and so on doesn’t work either. Is there a way to pass multiple images separated by ’|’ like the concat command ?
-
imagemagick gradient mask file creation
6 avril 2016, par lang2I’m playing with this creative script here : http://www.fmwconcepts.com/imagemagick/transitions/. The plan is to mimic what happens with the script with
ffmpeg
and generate video with transition effects between pictures. My current understanding is this :- I have two pictures A and B.
- I need in between a couple of pictures (say 15) that are partially A and partially B.
- To do that I use the
composite -compose src-over A.jpg B.jpg mask-n.jpg out.jpg
command. - During the process, the mask-n.jpg gets generated automatically that gradually change from all black to all white.
- Depends on the mathematically equations, the way the transition effect looks is different.
In one of the example, Fred the author gave this :
convert -size 128x128 gradient: maskfile.jpg
This will generate a image like this :
This is partially black and partially white. For the transition to work, I’ll need an all white one and an all black one and a couple of others in between. What’s the magical command to do that ?