
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (108)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (11959)
-
Convert series of images to RTSP
30 juin 2022, par ArcticI have a project where I receive RTSP stream from the camera, process each frame and then add metadata to each frame such as bounding boxes and texts. Now I need to convert this image back to RTSP ? On the internet, I could find many libraries/utilities to restream to RTSP, but nothing to generate RTSP from series of images.


In short, I am looking to have a solution on how I can convert series of images to RTSP


Thanks in advance


-
How to convert a series of images to video with crossfade in FFMPEG on Windows ?
17 juillet 2021, par Joe JobsI have a set of 40 images and I need to create a video where each image stays 5 seconds and then crossfades to the next.
I have found a way to transform the images into a video but each image stays for one single frame, I lowered the framerate to 1 FPS but still I need 5 seconds for each image and I need to crossfade between images.


This is the script I'm using now :


C:\Programs\FFMPEG\bin\ffmpeg.exe -r 1 -f image2 -s 1920x1080 -i %%03d.jpg -format yuv420p -crf 25 test.mp4



-
How to convert series of images to video using ffmpeg c++ ? [closed]
15 septembre 2020, par DevilI have tried command like




ffmpeg -r 1 -f image2 -i .\Img_%d.jpg -vcodec mjpeg -qscale 1
video.avi




But need a c++ ffmpeg program to convert number of images to video, is there any solution ?