
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 (57)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6055)
-
Where can I download images/videos for all kind of pixel formats ?
15 janvier, par BukibarakI am developing a software that use FFMPEG
AVPixelFormat
for images and videos. I want it to be compatible with most common pixel formats.

Is there a website where I can download images/videos that have all kind of pixel formats for testing purpose (like RGBA, BGRA, YUV, Greyscale, ...) ?


-
Ffmpeg multiple videos resize and crop [closed]
27 juin 2022, par user14809144I would like to crop and resize multiple videos that exist in one folder using Ffmpeg.


I did it with a single video but unfortunately, I don't know how to apply it to multiple videos in one line of command.


Crop ; code for single video


ffmpeg -i input1.mp4 -filter:v "crop=1000:1000” output1.mp4


Resize ; code for single video


ffmpeg -i output1.mp4 -vf scale=512:512 -preset slow -crf 18 output2.mp4


I want to crop multiple videos (more than 50 videos in one folder) to be 1000X1000 and then resize them again to be 512X512.


Any help ? advice ?


-
Merge videos with different start times and show them on a grid
1er août 2017, par shamaleyteI have multiple video files of a conference call. However, each participant joined the call at a different time, which resulted in the fact that each video file has a different start time offset values.
Video Start Time
------------------
Video1 00:00
Video2 00:10
Video3 01:40My purpose is to play back this conference. However, I did not record the conference as 1 video, it is recorded with multiple video files, instead.
How do I stitch these videos ?There is also a paid solution to merge video fragments to a single clip – this will make the client-side much simpler. But can I do it for free ?
The expected outcome is to have one video showing three videos on a grid.
When ffmpeg stitches the videos, it should consider their start time values properly so that the videos are played accordingly.