Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (40)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8661)

  • .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.

    


  • 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

  • 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