
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)
-
Using ffmpeg libraries in android native project
23 juillet 2012, par SergeyDIn my native android project I need to reduce a size of video file.
I've already built ffmpeg libraries for android.
How do I init ffmpeg libraries in my project and how to reduce video size without calling to ffmpeg in android command line.
Thanks in advance !
-
how to choose a screen to capture with ffmpeg in qt on windows
13 octobre 2020, par YouCLI am using qt with ffmpeg to record desktop on windows. My question is : if I have multiple screens, how to control the recording target ?


Now I pass
desktop
to paramurl
in functionint avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options);
. Is there some other param form forurl
to control which screen to capture ?

For example, if I only want to record the primary screen, what
url
value should I use ?

I know qt can identify primary screen and other screens. Is there a way to pass the screen id to ffmpeg ?


-
FFMPEG : is it possible to record 1920x1080 screen with DSHOW ?
25 avril 2020, par nxt_zombieI am currently working on a screen recorder in VB.net and i need ffmpeg to record my screen. I have the following ffmpeg code now :



ffmpeg.exe -f dshow -framerate 30 -i video="UScreenCapture":audio="Stereo Mix (Realtek High Definition Audio)" -filter_complex amix=inputs=1 -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -acodec pcm_s16le "output result file.mkv"




This works fine, but it only records a part of my screen. I already tried the registry keys (They weren't made, so i made them myself), but it also didn't work. Does anyone know how to do it ?



thanks in advance for helping me.