Recherche avancée

Médias (91)

Autres articles (56)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7570)

  • FFMPEG is not able to find window for edge browser

    19 avril 2022, par randy

    I am trying to capture video recording for edge browser using below command

    


    ffmpeg.exe -f gdigrab -framerate 9 -i title="About version - Profile 1 - Microsoft​ Edge' -vcodec libx264 -threads 1 -crf 35 -preset ultrafast -f hls -g 15 -hls_list_size 0 -hls_time 5 -r 7 -pix_fmt yuv420p -maxrate 1.7M -bufsize 2M -tune zerolatency -vf pad=ceil(iw/2)*2:ceil(ih/2)*2 index.m3u8


    


    This is how I found title for edge browser

    


    tasklist /v /fi "imagename eq msedge.exe" /fo list


    


    This is the error I get (notice the weird character)

    


     Can't find window 'About version - Profile 1 - MicrosoftΓÇï Edge'


    


    I have also verified the title with AutoIt application. This is working fine for chrome and firefox. Let me know if some is able to record the edge browser via ffmpeg

    


  • extracting single frame FFmpeg Interop

    12 janvier 2016, par Jakub Wisniewski

    I am writing app (Windows Phone 8.1 Store App) that allows user to connect to IP Camera. I am using FFmpeg Interop library for ffmpeg which allows me to play eg. rtsp streams in media element. I need now a way to somehow extract a single frame from stream or from media element.

    I have tested other application wchih allows connecting to IP cameras - IP Centcom, and they have working snapshots only for mjpeg streams as far as I now (they were not working for rtsp). Becouse of that I belive that it is impossible or at very least very hard to export frame from media element.

    I have different question - if anyone has ever used FFmpeg Interop and would like to help/explain me how could I modify/extend FFmpegInteropMSS to add method called ’GetThumbnailForStream’ that would work similary to ’GetMediaStreamSource’ but would return single frame (bitmap or jpg) instead of MediaStreamSource ?

    Every help would be appreciated

  • .MKV (Stream #0:0) RGB Video File not playing on Azure Kinect Viewer

    16 juin 2023, par Ashutosh Singla

    I have a recorded video file from Microsoft Kinnect Camera. Using MKVToolNix, I extracted one stream that contains RGB_Original video. This RGB_Original video can be played using Azure Kinect Viewer. However, when I encode RGB_Original video using FFmpeg with the following command

    


    ffmpeg -i .\RGB.mkv -c:v mjpeg -pix_fmt yuvj422p -q:v 5 -r 30 output_video.mkv 


    


    This output_video can not be played using Azure Kinect Viewer. It displays failed to open recording.

    


    Any help would be appreciated.