
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (56)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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. -
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 (9104)
-
How do I index an image in FFmpeg ?
3 mai 2020, par big boiI would like to convert a 16bit image into an indexed one, using the command line interface with FFmpeg.


-
Crop image and take the left part with ffmpeg
21 novembre 2019, par shAkurffmpeg -i giphy.mp4 -y -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" -vframes 1 -vcodec mjpeg giphy.jpg
The command above takes the first frame of a mp4 file and converts it to an image. I want to crop that image and take only the left part starting from center but I get the following error :
Invalid file index 1 in filtergraph description
[0:v]crop=iw/2:ih:0:0[left] ;[1:v]crop=iw/2:ih:ow:0[right] ;[left][right]hstack.What is wrong with my command ? The image I want to crop : imgur.com/a/PdAqiZU -> I want to take only the left part of that image
-
Frames drop when it comes to the last image - Android FFMPEG
1er novembre 2015, par RahulI’m using the code
ffmpeg -f image2 -framerate 0.2 -pattern_type sequence -framerate 25 -i /Source_Folder/Temp/a%d.jpg Dest_Folder/name.mp4;
When I execute it for a number of images, I always lose frames in the last image. Ex : If every image comes up for 3 seconds each, the last one just half a second or so short. What should I change in the above command ?