
Recherche avancée
Autres articles (53)
-
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 (...) -
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 (...)
Sur d’autres sites (7193)
-
FFMpeg create a video from a large number of images
15 décembre 2016, par Herman YanushSo I have a directory, where script ran by cron puts photos from my webcam. And I want to make a sort of timelapse. So i want to join this images to a video, one image = new frame (no delay).
So i have a jpg images filenamed
YYYY-MM-DD_HH_MM-webcamshot.jpg
And i want to join them into a mp4 video.
I found out that i can do it with FFMpeg for ex. with this command
ffmpeg -pattern_type glob -i '*.jpg' -c:v libx264 output.mp4
(from here)But unfortunately this only joins the first 600 (or a bit more) of 2.5K images in the directory.
So i want to know :
-
Can FFMpeg join more images (maybe unlimited amount) ?
-
Is it problem of using -pattern type glob instead of wildcard ?
-
If it can’t, how to split images into directories and make videos from these directories and then join or rename images to format like
img01729.jog
so wildcardimg%04.jpg
can be used ?
FFMpeg on Linux Mint (ubuntu 16.04).
-
-
minify all images
20 août 2014, par TheDigitalOrchardminify all images
-
Nodejs based video creation using ffmpeg with multiple images having distinct timegap inbetween
22 novembre 2017, par Aman Kumar AggarwalTrying to create video content out of multiple images.
But need to create video with images on dynamic timelinei.e
image1->0sec
image2->5sec
image3->8sec
... so onAny help will be useful. Currently using below git reference in nodejs but couldn’t achieve above scenario. It asks for loop value we tried to create it dynamic with float value but doesn’t work.
https://github.com/h2non/videoshow
We passed images list of 6 images and total timeline of images is 14seconds of which video is to be created.
But when we create video it depends on loop value under options which push time lag between images content to create video and for an example if we keep it 3 then video length will be 6*3=18sec
Please help of how to manage same.