Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (65)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6012)

  • ffmpeg record audio from Xvfb on Centos

    25 mai 2017, par boygiandi

    I’m trying to record audio from Xvfb. And I have some problems :

    1. What’s the different between alsa and pulse. I get confuse
    2. Server Centos have no soud card :

    arecord -l

    arecord : device_list:268 : no soundcards found...

    1. I may have many Xvfb process, how to record video and audio from specific Xvfb process. I checked this https://trac.ffmpeg.org/wiki/Capture/ALSA#Recordaudiofromanapplication but still don’t understand how it works.

    ffmpeg -f alsa -ac 2 -i hw:0,0 -acodec pcm_s16le output.wav

    I seen many command like this, but I don’t know how to get hw:0,0 ( id of sound card ? )

    Please help. Thanks

  • Libavcodec decode ffmpeg Fuzz-testing

    20 juin 2016, par Marso

    I’m implementing a testing stub for libfuzzer. My purpose is to do some testing for libav and I’m currently trying to do it for ffmpeg codec. Testing stub has *data and size as arguments, which are data as file data and size as filze size. Purpose is to open ffmpeg file and decode it.

    I have read decode example from here :
    http://roxlu.com/2014/039/decoding-h264-and-yuv420p-playback

    I just have problems understanding how should I open and decode file. My code currently looks like this :

    #include
    #include
    #include
    #include

    extern "C" {
    #include "libavcodec/avcodec.h"
    #include "libavutil/avutil.h"
    }

    #define INBUF_SIZE 4096
    #define AUDIO_INBUF_SIZE 20480
    #define AUDIO_REFILL_THRESH 4096


    extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     avcodec_register_all();
     AVCodec *codec;
     AVCodecContext *c= NULL;
     AVCodecParserContext* parser;
     uint8_t inbuf[AUDIO_INBUF_SIZE + FF_INPUT_BUFFER_PADDING_SIZE];
     FILE *f;
     AVPacket avpkt;

     codec = avcodec_find_decoder(AV_CODEC_ID_MP2);
     c = avcodec_alloc_context3(codec);
     parser = av_parser_init(AV_CODEC_ID_MP2);

     // decode file


     av_parser_close(parser);
     avcodec_close(c);
     av_free(c);

     return 0;
    }
  • How to check if in the network there are Ip Cameras ?

    29 décembre 2020, par AlessandroT

    I'm going to creating a program that has the purpose of showing all the ip cameras present in the local network and that also allows you to connect to them. My problem is that I don't know if there is a way programmatically to show if there are any ip cameras in the network. Is there any way ? There is also a way, once connected to them, to return all the possible commands that can be imposed without having to go through third-party software or the software of the camera manufacturers. For future purposes I will have to use JavaCV, can I directly use it or ffmpeg for my main question ?