
Recherche avancée
Autres articles (45)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9279)
-
lavd/avfoundation.m : Do not use transport controls for screen capture devices.
4 avril 2020, par Thilo Borgmann -
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.


-
ffmpeg screen recording in background
25 novembre 2020, par MaciejjyI would like to record my screen with ffmpeg during some automation work as a step in Azure devOps.
I can use some simple command like :



.\ffmpeg -f gdigrab -framerate 10 -i desktop vid.avi




and it is working but for ADO this is one step in whole job so until it is not finished it will simply not go next step. I need this recording for whole job.
Right now when I run this command then command line is 'frozen' it is showing progress of recording. For ADO it means that this step is not finished. 
I would like to know if it's possible to run ffmpeg with some additional options so job still running but in the backgroud.