Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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, par

    Les 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, par

    Mediaspip 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 Zych

    I'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 user892134

    I 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 to ultrafast but is there a way i can improve the above command ? Anything obsolete ?

    


  • force crop overscaling in ffmpeg thumbnail generation

    26 mars 2012, par holographix

    hello 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-