
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (105)
-
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...) -
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" (...)
Sur d’autres sites (10005)
-
ffmpeg screen recording file can't be played with video with windows media player [duplicate]
7 septembre 2021, par The Mr. TotardoI'm new to ffmpeg. Recently I have recorded my screen using commmand
C :\Users\Totzfreelance\ffmpeg.exe -f dshow -i video="UScreenCapture":audio="Microphone (Realtek High Definition Audio)" output1.mp4


But the result (the output1.mp4) can't be played with video (only sound) with Windows media player but I can play it both sound and video using VLC. What's the problem ?


Can you show me the minimalist command how to fix it ?


-
ffmpeg and uscreencapture not taking full screen
27 mai 2022, par The Mr. TotardoI want to record my screen full screen with modest command below. My screen resolution is 1920x1080


C :\Users\Totzfreelance\ffmpeg.exe -f dshow -i video="UScreenCapture":audio="Microphone (Realtek High Definition Audio)" -offset_x 0 -offset_y 0 -video_size 1920x1080 -pix_fmt yuv420p c :\Users\Totzfreelance\testing3.mp4


but the video result dimension always 1280x720. There is part of screen not captured. I want it to be 1920x1080.


-
Streaming windows desktop to Youtube with ffmpeg [closed]
23 mai 2021, par rarahimI've been spending days trying to stream my live desktop to Youtube using ffmpeg. There are too many questions and answers on SO about this topic but none really works for me, or perhaps because working with ffmpeg is non-trivial task with it's never ending list of available options.


So far, what sort of works for me is using the following (which is a mixture of what was gathered from various sources) :




ffmpeg -threads:v 2 -threads:a 8 -filter_threads 2 -thread_queue_size
5096 -f dshow -i video="screen-capture-recorder" -f dshow -i
audio="Stereo Mix (Realtek High Definition Audio)" -pix_fmt yuv420p
-c:v libx264 -qp:v 19 -profile:v high -rc:v cbr_ld_hq -level:v 4.2 -r:v 60 -g:v 120 -bf:v 3 -refs:v 16 -f flv rtmp ://a.rtmp.youtube.com/live2/KEY




My questions are :


- 

-
how do i only stream video ? i do not want to stream audio, simply removing '-f dshow -i audio="Stereo Mix (Realtek High Definition Audio)"' causes it to fail


-
after a while, ffmpeg starts to hog my memory causing my system to slow down terribly, what causes this and how can i fix it ?


-
my video feed when viewed from Youtube keeps buffering rather frequently, how can this be fixed/improved ?










Thanks.


UPDATE :
I've managed to somewhat figure out a workaround for these issues. Not sure if these are the right solutions but they work for now.


- 

-
Youtube apparently requires streams to have audio component. So instead of just removing the audio device form the options, i had to put in "-f lavfi -i anullsrc" to use null audio device.


-
The memory hog issue was improved by adding "-framerate 10" and "-r 10" to the input and output options, this reduces target frame rate to 10fps.


-
The overall stream performance seem to be indirectly improved by doing the above actions.










So finally the working simplified version of my ffmpeg command is :




ffmpeg -framerate 10 -f dshow -i video="screen-capture-recorder" -f
lavfi -i anullsrc -vcodec libx264 -preset:v ultrafast -pix_fmt yuv420p
-f flv -r 10 rtmp ://a.rtmp.youtube.com/live2/KEY




I'm updating here in case it might be useful to someone at some point in the future.


-