Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (111)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

Sur d’autres sites (10108)

  • Obtain the total number of samples with FFMpeg

    10 octobre 2018, par Henricus V.

    Currently my application reads audio files based on a while-realloc loop :

    // Pseudocode
    float data* = nullptr;
    int size = 0;
    AVFrame* frame;
    while(readFrame(formatContext, frame))
    {
       data = realloc(data, size + frame.nSamples);
       size += frame.nSamples;
       /* Read frame samples into data */
    }

    Is there a way to obtain the total number of samples in a stream at the beginning ? I want to be able to create the array with new[] instead of malloc.

  • Obtain the total number of samples with FFMpeg

    21 juin 2016, par Henry W.

    Currently my application reads audio files based on a while-realloc loop :

    // Pseudocode
    float data* = nullptr;
    int size = 0;
    AVFrame* frame;
    while(readFrame(formatContext, frame))
    {
       data = realloc(data, size + frame.nSamples);
       size += frame.nSamples;
       /* Read frame samples into data */
    }

    Is there a way to obtain the total number of samples in a stream at the beginning ? I want to be able to create the array with new[] instead of malloc.

  • How can we extract the RTP packet sequence number from AVPacket (ffmpeg)

    6 septembre 2019, par Nech

    We are trying to extract the "Sequence Number" from the RTP header of a packet.
    We use av_read_frame in order to read the packets into AVPacket structs.

    We tried using the AVPacket.data field, hoping it holds the original payload, but we didn’t manage to find the right location of the header. So we assume that the data field does not hold the full payload - please correct if we are wrong.

    Is there a way to find the RTP header information ?