Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10789)

  • Check an address to see if there is any video stream on it or not

    12 janvier 2014, par Blue Sky

    I want to read a video stream from a UDP address using libavcodec functions. To do so, I use the following code :

    char *url = "udp://127.0.0.1:1000";
    AVFormatContext *oc = NULL;
    avformat_open_input(&oc, url, NULL , NULL);

    If we run this code, then function "avformat_open_input" starts listening on the given UDP address, and it looks like the program is halted if there is no video stream at the given UDP address.

    Now, I want to write a code to first check the given UDP address quickly to see whether there is any data on it or not, if there is no data then the program should neglect running "avformat_open_input", otherwise it should run this function so that I can avoid the halting situation.

    Any idea how I can do this ? Thanks !

  • Reading custom SEI message when decoding using VideoCodec (NVENC)

    23 avril 2018, par cloudraven

    I have a series of videos with custom information encoded in the sei message NAL. Is it possible to read that information when decoding using the Nvidia hardware decoder. If it is not supported, should I use FFMPEG compiled with NVENC support instead ?

    UPDATE :
    I want to decode the media and read the SEI message. I am streaming live video and including postprocessing info in the sei message. The client has to use that info to apply effects to the decoded media.
    Decoding the media as quickly as possible is important, and I want to do it in hardware. I assume that the Nvidia decoder must parse the NAL units to decode them. I would like to avoid duplicating work if possible.

  • What is a damaged MPEG stream ?

    9 septembre 2013, par TopGunCoder

    I am reading through the avcodec documentation and I am trying to understand what it means for an MPEG stream to be damaged. It mentions :

    The end of the input buffer buf should be set to 0 to ensure that no overreading happens for damaged MPEG streams.

    So what would happen if the end of the input buffer was not set to 0 ? Would this a potential way to introduce corruption ?