
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 (66)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9981)
-
How to record browser animation to video, on Server/VPS
11 novembre 2015, par Andy BI have one big question : How to record an animation that plays in the browser on a server/VPS ? We’re looking for a open/source or even proprietary solution.
The use-case :
We have an online project that generates animations and we want to record them on the server side.
Practically it’s as simple as that, as opening a url(eg : https://greensock.com/gsap) in the browser and record the animation.On the local PC it works if we use ffmpeg, but we want to record the video on the server side, especially on a VPS without GUI.
There are some solutions :
- Install a Lightweight GUI on the VPS, accesible through VNC
Something like this :
https://vpsboard.com/topic/2786-running-a-lightweight-gui-on-your-vps/Then create a cron job that will do the following :
- open the browser with the correct url and play the animation
- use ffmpeg to record the animation
- save the video somewhere
This solution allows a SINGLE execution thread at the same time and I don’t really like the setup.
- Use a fake X server
Create/use a fake X server, tell the browser to run in there, tell ffmpeg to record that screen !?
The question is : HOW ?
- Virtual Machines within the VPS
The question is : HOW ?
I would like to have the possibility to execute this job in a sort of container (be it docker or virtual machines within the VPS), having also the possibility to execute multiple jobs in parallel.
Thank you all in advance !
-
FFMpeg - how to encode a F4M manifest file to mp4
20 novembre 2015, par RoeeI’m working on a project, where we want to encode flash videos to mp4 (for example, we want to encode a f4v file), and live-stream them (which means we can’t just download all the f4f files, then encode them to a single mp4 and just then stream it. The encoding and streaming has to be done while downloading the files).
If the format of the flash video is flv for example, FFMpeg can do what I’ve described without any problem. I just give the address of the flv file to FFMpeg, and it encodes and streams it as mp4.
But, if the format of the flash video is something more complicated as f4v (which gets downloaded as many f4f files), I don’t have a single url to give to FFMpeg as input - I have many addresses of f4f files. I don’t even know how many f4f files the video has before playing it - it looks like the flash player just fetches the next f4f file when needed.
I read online that there is a manifest file (its extension is f4m), that "describes" to the flash player which f4f files it should download and play, and what’s their playing-order and everything.
My question is - if I have the url of this f4m file, what should I do in order to encode all its f4f files to mp4 ?
I’ve tried to give to FFMpeg just the f4m file as input, but it doesn’t know what to do with it...I’ll really appreciate any response that might help, as I’ve been working on this issue for few days now and I still haven’t found any answer...
Thanks,
Roee. -
FFMpeg - Concat Video Files + Crossfade ?
16 février 2020, par John DoeUsing BATCH-File, I am piping lots of videos to FFMpeg and would like to crossfade the transitions. Instead of going to black, I’d like them to overlap by 2 seconds during the transition. Audio is not necessary as the videos are all silent. I am adding looped audio separately.
(
for /F %%i in ('dir /b "Folder\*.mp4"') do @echo file 'Folder/%%i'
) | ffmpeg -y -protocol_whitelist file,pipe -f concat -safe 0 -stream_loop -1 -i pipe: -stream_loop -1 -i "audio.mp3" -c copy -movflags faststart -fflags genpts -preset veryfast -t 3600 -r 30 "output.mp4"I’ve found lots of similar examples online but none are suitable. A little help would be appreciated. Thank you.