
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (74)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (6375)
-
ffmpeg record screen file formats
3 avril 2020, par New_DevGood day,
I'm currently writing a bash script which records the screen under certain conditions. The problem is that only avi works as a file extension for recording the screen. This script is going to be used on an Raspberry Pi and currently I get on a decent virtual machine only 10-20 fps (goal would be around 30 fps). I think .avi is not suited for my project. But .mpeg and .mp4 are not working for recording. I tried recording with .avi and then converting it in .mp4, but I have limited memory and .avi ist just too big in size. I use currently the following command :



ffmpeg -f x11grab -y -r 30 -s 960x750 -i :0.0+0,100 -vcodec huffyuv ./Videos/out_$now.avi
//$now is the current date and time




So I wanted to know if I need some special packages from ffmpeg to record with for example .mp4 or if there are other file formats available for ffmpeg screen recording.



Edit :
I found that the codec libx264 for mp4 works, but the fps drop until they hit5 fps, which is definetly too low. The recorded video appeared like being a fast forward version of the recorded screen.



With mpeg4 for mpeg I reached over 30 fps, but the video qualitywas very bad.



It appears that even my big avi-files look like being played fast forward. Is there something I do wrong ?



Is there a good middle way, where I get a decend video quality, good fps (20+) and a file which isn't too big ?



Edit 2 :
I tried recording it with .avi and converting it afterwards. Just converting with
ffmpeg -i test.avi -c:a aac -b:a 128k -c:v libx264 -crf 23 output.mp4

resulted in the same framedrops as if I was recording with .mp4. But when I cut a littlebit of the beginning of the video and named the outputfile .mp4, the size became much smaller. But when I started the cutting at 0:00:00 (so tried just converting), it just changed the file format without converting it (so the size stayed the same). Any ideas ?

-
How to directly record screen in .mp4 format using ffmpeg in Windows10 ? [on hold]
9 août 2019, par Alex SalageanI have been using .gifs to make short screen recordings but as the video duration gets longer, the file size also gets a lot larger. Therefore, I want to directly record my screen in a .mp4 format.
I have tried making a .gif animation using multiple separate images and then converting them to .mp4 via ffmpeg but I need a command which lets me directly record the screen using the .mp4 format.
-
Best multiplatform C++ Library for screen, audio and microphonecapture [closed]
15 novembre 2019, par BaschdelIm searching for some librarys C++.
I’m trying to record an microphone and capture the computerscreen.At the moment I am recording audio with
portaudio
and use the screencapture part offfmpeg
.
Muxing the streams together should be accomplished byffmpeg
.The whole project should run on macOS, Windows and Linux.
I’m relativly new to this subject so I really don’t know if this are the right tools to use, or if there are much easyer and better tools.
For my understanding ffmpeg is the biggest and best library for sclaing muxing, etc. But ffmpeg is not great in recordig screen or audio.
Does somebody got experience with this librarys or ideas of different librarys ?