Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (30)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5909)

  • Suggest me solutions to implement A/V streaming from PC to Android w. low latency

    11 août 2021, par kekk0

    I would like to code server/client applications to stream PC desktop audio/video to android box device. It would be limited to wired LAN connection, no internet, no wifi ; Aims are good image quality and lowest latency. I was reading about setting up an FFmpeg server on pc to hls/m3u8 and coding a simple exoplayer-based client on android device, but it seems the latency might be high (seconds). Could you suggest me some good alternative solutions ?

    


  • How to compile FFMpeg with older NVEnc ?

    20 décembre 2019, par dabei

    I get this error when running FFMpeg with NVEnc.

    [h264_nvenc @ 0x2a27d00] Driver does not support the required nvenc API version. Required: 9.1 Found: 9.0
    [h264_nvenc @ 0x2a27d00] The minimum required Nvidia driver for nvenc is 435.21 or newer

    I can’t upgrade the driver to latest version because I’m limited by what’s supported in GKE.

  • FFMPEG : Decode only portion of a frame

    17 avril 2019, par SAMPro

    I am using libav libraries to decode video and process frames in order to do some image processing. However I have limited resource to decode frames and no hardware acceleration at all. So decoding is the critical section in my project (regarding speed).

    Because only some section of frame is needed to processed, I’m wondering is it possible to decode only a region of interest (a rectangle) and the rest of the frame is not decoded ? And does this make the decoding faster ?

    Edit :
    I have decoding H.264 codec.