
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (67)
-
Les images
15 mai 2013 -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
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 (7936)
-
FFMpeg : Images into video
12 mars 2012, par MarkI'm trying to turn a series of images into a video.
My idea is to have a very low frame rate so it's essentially a slideshow video for the frames.
I currently have my images in the following format...
*1-1.jpg
*1-2.jpg
*1-3.jpg
*1-4-1.jpg
*1-4-2.jpg
*1-4-3.jpg
*2-1.jpg
*2-2.jpgetc...
So, here's the command I'm trying to run...
c:\wamp\www\videos\images>c:\ffmpeg\bin\ffmpeg.exe -f image2 -r 1 -i %d-%d.jpg movie.mpg
This command won't do exactly what I want it to, but it'll let me at least get a test video done.
Ideally, I'd like to be able to do multiple run throughs via PHP (which will be easy, I think once I get a working command)
So, on the first run it would process all the images that start with 1, then on the second the ones that start with 2, and so on.
However, no matter how I format the image section of the command, I get the following error...
%d-%d.jpg: No such file or directory
If I just do %d.jpg, I get the same error, but with %d.jpg instead of %d-%d.jpg
Do you have any ideas how I can get this to work ? If I can get it to work with one set, I can use variables and loops in PHP to get it to process the other videos I'll be making.
Thanks in advance for any thoughts.
-
How i can record video from images in Android
8 avril 2014, par Farhan ShahI am working on app in which i have the following issue,
- How i can Record video from images ?
- First of all when i click on a button i am opening the Gallery in Android and let the user select multiple images.
- for select multiple images i am using that code https://github.com/luminousman/MultipleImagePick and it's working fine,and images are display into my activity.
- Now My Point is that when i select the multiple images from gallery then i want i will record or make video of the selected images on a button click.How i can achieve this via programmatically,i search internet and i read that there is a library ffmepg through this i will solve my problem,but still i have no idea that how i can solve my problem.
Any sample code,advice,guidance,will be highly appreciated,Thanks Alot in advance.
-
Selected png images to gif using ffmpeg or imagemagick
28 avril 2021, par GhajikI want to convert png to gif and i want to mention which are the frames i want to combine
eg : frame1.png and frame2.png.
I've tried using
ffmpeg -i frames/%03d.png -vf fps=20 logo.gif
but it is considering all the images in that directory, but i want only two images in that directory to be included in the gif i want to create. Thank you in advance.