
Advanced search
Medias (2)
-
SPIP - plugins - embed code - Exemple
2 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
Publier une image simplement
13 April 2011, by ,
Updated: February 2012
Language: français
Type: Video
Other articles (53)
-
Keeping control of your media in your hands
13 April 2011, byThe 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 May 2013 -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 February 2011, byLa 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 (...)
On other websites (7695)
-
ffmpeg: several audio files + several images = 1 video?
18 October 2012, by user1752708I have about 500 audio clips and 500 images that I need to put together for a project I'm working on. Each video is made up of a number of audio clips and images. The order is already set by the naming (audio01.mp3 goes with image01.tiff etc). They files are divided into several folders named Chapter1, Chapter2 [...] Chapter12. The number of files in each folder differs, but the naming scheme is the same in each folder.
Each image will need to have the same exact duration as its partner audio file.
What is the best way of doing this? I've found ways of putting together 1 image with 1 audio file (http://stackoverflow.com/questions/5887311/ffmpeg-1-image-1-audio-file-1-video) or several images with one audio file (http://superuser.com/questions/356974/how-to-turn-images-into-a-video-slideshow-with-sound/356982#356982) but nothing that does exactly what I want.
I'd appreciate any help you could give me!
-
hwcontext_vulkan: ask for storage images by default
1 September 2024, by Lynnehwcontext_vulkan: ask for storage images by default
The issue is that we ask for storage images by default if
available, but because that is gated by the format supporting
storage images, and the check for the format supporting storage
images is gated by the usage, this resulted in a catch-22. -
OpenCV (C++) Load images sequentially with name containing X
4 April 2016, by Alec GambleI was wanting to create a program which would take every image within a certain directory (preferably with a specific image prefix) and store them in an array of Mats.
subquestion:
I’m creating the images using ffmpeg previously in the same program.system(
"ffmpeg "
"-i ..." // input file
"-r 10 " // rate in Hz
"..." // output location
);What is the best practice for the location to output the images to considering that they’re to be temporary? I’m building in XCode and am currently making an OSX application but I would ideally like to be able to port it to iOS. should I use
/tmp
?