
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (77)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (12582)
-
FFmpeg MP4 to FLV too slow [on hold]
13 septembre 2015, par user3583903I am converting .mp4 files to .flv using ffmpeg in centos. But the conversion time is extremely too slow ! It takes about 1.5 hours to convert 500MB .mp4 file. I am using a linux vps with 2 GBs dedicated RAM.
I am using the following code :
ffmpeg -i source.mp4 -c:v libx264 -ar 22050 -crf 28 destination.flv
Is there any way I can fasten the conversion time ? Any help/suggestions will be appreciated.
-
FFmpeg error - "at least one output file must be specified" [closed]
7 février 2013, par Derrick TuckerI'm having a little trouble, and I feel like the solution is probably starting me in the face.
ffmpeg -ss 0 -i rawvid.flv -t 33 -vf scale=640x480 -b:21504 test.mpg
When run, this yells at me that "At least one output file must be specified". I've been knocking me head on the wall for hours now, what am I missing ?
PS : FFmpeg works fine, and if I remove all of the flags in the statement above, it works.
-
record screen with high quality and minimum size in ElectronJS (Windows)
4 avril 2022, par Seyed Ali Roshanas I said in the title, I need to record my screen from an electron app.


my needs are :


- 

- high quality (720p or 1080p)
- minimum size
- record audio + screen + mic
- low impact on PC hardware while recording
- no need for any wait after the recorder stopped














by minimum size I mean about 400MB on 720p and 700MB on 1080p for a 3 to 4 hours recording. we already could achieve this by bandicam and obs and it's possible




I already tried :


- 

- the simple MediaStreamRecorder API using RecordRTC.Js ; produces huge file sizes, like 1GB per hour for 720p video.
- compressing the output video using FFmpeg ; it can take up to 1 hour for 3 hours recording
- save every chunk with 'ondataavailable' event and right after, run FFmpeg and convert and reduce the size and append all the compressed files (also by FFmpeg) ; there are two problems. 1, because of different PTS but it can be fixed by tunning compress command args. 2, the main problem is the audio data headers are only available in the first chunk and this approach causes a video that only has audio for the first few seconds
- recording the video with FFmpeg itself ; the end-users need to change some things manually (Stereo Mix), the configs are too complex, it causes the whole PC to work slower while recording (like fps drop ; even if I set -threads to 1), in some cases after recording is finished it needs many times to wrap it all up
- searched through the internet to find applications that can be used from the command line ; I couldn't find much, the famous applications like bandicam and obs have command line args but there are not many args to play with and I can't set many options which leads to other problems












I don't know what else I can do, please tell me if u know a way or simple tool that can be used through CLI to achieve this and guide me through this