
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (43)
-
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 (6683)
-
ffmpeg glue 4 videos on split screen with preview
18 janvier 2023, par rst630I have 4 video files 480x1080 with audio - all different duration.


I need 1920x1080 video


_____________________________________________
| | | | |
| | first | first | first |
| play | frame | frame | frame |
| | | | |
---------------------------------------------

_____________________________________________
| | | | |
| | play | first | first |
| last| | | frame | frame |
| frame | | | |
---------------------------------------------



when first video done 2nd column video must start and first video must show just last frame, other left 2 videos still show first frame and wait queue


for example lets say we have these durations :


1.mp4 - 1:00
2.mp4 - 1:35
3.mp4 - 1:20
4.mp4 - 1:05



Also I can prepare screenshots of each video for preview frames (first/last)


Cant even imagine how to do this job with ffmpeg or maybe exists any simplier way for shell ?


example of output video https://www.youtube.com/watch?v=vdBd5-8uOTo


-
FFMPEG thumbnail in php application's is not rotated properly
4 septembre 2015, par VigneshI have created a FFMPEG thumbnail in a php application and tried to rotate the thumbnail image if the video is bottom up(reversed).But the image rotate is not working properly.
The below is the code for image rotation$video = $storeHere.$mediaFile;
$tImage = $upload_output['uploaded_file'].'.jpg';
$thumbnail = $storeHere.$tImage;
// shell command [highly simplified, please don't run it plain on your script!]
shell_exec("ffmpeg -i $video -deinterlace -an -ss 1 -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 250x250 $thumbnail 2>&1");
/* image rotate fix */
$source = imagecreatefromjpeg($thumbnail);
$degrees = 270;
$rotate = imagerotate($source, $degrees, 0);
imagejpeg($rotate,$thumbnail);
/* rotate fix ends */ -
Python - live straming from GoPro and convert in mp4
13 août 2017, par chri13I need to develop an Android App that display live stream from GoPro Hero4...
I have used a Python Script (through ffmpeg) to display on my pc, live stream...
This is the main python command :
subprocess.Popen("ffmpeg -i 'udp://:8554' -fflags nobuffer -f:v mpegts -probesize 8192 " + TS_PARAMS + SAVELOCATION, shell=True)
What is a Python command (or a terminal linux command) to do this :
- take live stream from GoPro Hero4
- open new stream
- convert in mp4 format the input frames from GoPro
- send the input frames in the new stream
- and then, take this new mp4 stream from my Android App
??
Can you help me, please ?
Thank you very much !
Best Regards !