
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (81)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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
Sur d’autres sites (8566)
-
Is there anyway to capture lock screen with ffmpeg or electron getUserMedia
17 février 2023, par Craig ZychI'm trying to create a remote desktop app.



Everything is working great except I can't find a way to capture the windows lock screen to allow login from remote.



I'm using electron and getUserMedia which will show the lock screen on macOS but just hangs with a still image on Windows until the screen is unlocked.



Is there any way to capture the lock screen on windows using the built in getUserMedia or ffmpeg ?
If not do you have any other suggestions of ways to capture ? I don't need high framerate on the lock screen.


-
ffmpeg, overlay .mov onto .mp4, way to make faster, without changing preset ?
4 mai 2022, par user892134I have the following command, which puts an overlay.mov file ontop of a .mp4 file. It works great but i'm wondering if the command i'm using can be sped up.


ffmpeg -loglevel quiet -i 'assets/videos/background.mp4' -i 'assets/videos/overlay.mov' -filter_complex '[1:v][0:v]scale2ref[ua][b];[ua]setsar=1,format=yuva444p,colorchannelmixer=aa=0.5[u];[b][u]overlay=eof_action=pass[v]' -map [v] -map 0:a -preset medium -y 'assets/videos/output.mov'



I know i can change
-preset
toultrafast
but is there a way i can improve the above command ? Anything obsolete ?

-
force crop overscaling in ffmpeg thumbnail generation
26 mars 2012, par holographixhello everybody I've got this script that creates a thumbnail for a video :
/usr/bin/ffmpeg -itsoffset -94 -i /my/path/to/video/myvideo.mov -vcodec mjpeg -vf "crop=(in_h/3)*4:in_h,scale=160:120" -vframes 1 -an -f rawvideo /my/destinatio/path/thumbnail/myVideoThumb.jpg
it works great except when the input video is out of ratio, when it comes to this condition it crashes with
[crop @ 0x1f488180] Invalid too big or non positive size for width '192' or height '144'
so I was wondering if is out there a way to force it to create the thumb even if the source file is out of ratio, like 194x144.
thanks in advance
-k-