
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 (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)
-
Creating uncompressed video files from sequences of images with partial looping
18 septembre 2021, par Ethan KendrickI have multiple sequences of 7 images. I would like to encode these 7 images into a 10 fps video file that cycles through the first 4 images in the first 4 frames, and then repeats the rest of the images in a looping order for a total of n frames. For example, a 32-frame video file as follows :


12345676567656765676567656765676


Is there a way to predetermine the order of the 7 frames, including duplicates (the repetition of images 5, 6, and 7) ?


-
How to create a video editing timeline from images in android ?
24 février 2015, par xsx4uI am developing an app that includes simple video editing. I am using JavaCV and ffmpeg to grab frames and images from a video. What I want to do is to draw a video editing timeline like in most video editors (from the images that I grab from a video). E.x take images from start, end and the middle and display a single view containing these images.
I do not know what would be the most efficient approach to do this. One option would be to create multiple ImageViews and put images there. Maybe another is to create a custom view. Any help appreciated
-
How can make video file from images of 1 image per second using ffmpeg ?
14 décembre 2019, par A Swe are creaing video from images using ffmpeg on window. The video is created successfully but we are not able to control number of images per second of video. we need 2 images per second in video.
Below is code we used
exec('ffmpeg -y -f image2 -framerate 2 -i C:/inetpub/wwwroot/movie/images/%d.jpg video60.mpg', $output, $exit_status);
Please help us to find solution for above problem.