Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (97)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11404)

  • Python threading module on windows after session logout

    1er décembre 2013, par e271p314

    I wrote a code which starts to record screen capture from the second it identifies mouse movement until it identifies the mouse didn't move for a predefined time (10 seconds).
    In python, on windows, how to wait until mouse moves ?
    If, I'm logged in to the session the code works fine, i.e. it starts and stops on time and records the screen capture. But, if I logout, I expect the script to identify that the mouse doesn't move and stop recording. Instead, the code doesn't stop and when I login again (long after the 10 seconds passed), the screen capture (from the previous session) keeps running, yelling the rt buffer is full and it keeps running until I close the cmd console even I expect it to work for 10 seconds (at least when I'm logged in). Any idea what is the issue ? I feel like it is something between the threading module and the session logout but I could be completely wrong about this.

  • ffmpeg h264_amf on Windows 10 fails with CreateComponent(AMFVideoEncoderVCE_AVC) failed

    10 mai 2024, par wallllaw100

    Trying to use hardware encoding with ffmpeg (version 7.0-essentials_build-www.gyan.dev) on Windows 10

    


    Command

    


    ffmpeg -i  -v verbose -c:v h264_amf -acodec copy -y 


    


    Error

    


    [h264_amf @ 0000014dc3388580] AMF initialisation succeeded via D3D11.
[h264_amf @ 0000014dc3388900] CreateComponent(AMFVideoEncoderVCE_AVC) failed with error 36
[vost#0:0/h264_amf @ 0000014dc3bf7c80] Error while opening encoder - maybe incorrect parameters such as bit_rate, rate, width or height.


    


    How to resolve this ?

    


  • Screen recording and live streaming (Windows DXGI) - C++

    16 mai 2020, par NewbieCoder

    I am using the Desktop Duplication API in Windows to obtain images of the screen. I know to obtain the bitmap image of the screen by using the API but I am stuck after this. To stream it to the server I thought of encoding it into H264 and then encoding that again to RTMP and then streaming it to the server. Is there a better and faster way ?

    



    I searched many times and most of the answers are using FFmpeg and just finishing the whole task of screen recording to streaming in a single line. Please tell me a way to do this programmatically !!

    



    How do I encode to H264 and then to RTMP ? If the video is being double encoded, will this result in a loss of performance in both streaming side and receiving side ?

    



    Please point me in the right direction. Any hints or links will be very helpful.