Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (51)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9289)

  • Save updated Exif Orientation data in image file.

    10 avril 2020, par blueimp
    Save updated Exif Orientation data in image file.
  • ffmpeg how to save decoded audio data to pcm

    21 avril 2015, par Jason

    I have succeed decode audio data from a mp4 using avcodec_decode_audio4, I want to save the decoded frames,so I tried below

    if (got_frame) {
     int size;
     uint8_t *data;
     int ref = 0;
     ret = swr_convert(swr, &data, frame->nb_samples, (const uint8_t **)frame->extended_data, frame->nb_samples);
     //fwrite(data, 1, frame->nb_samples, fp_audio);
     ref++;
     int szie = av_samples_get_buffer_size(NULL, 2, 1024, AV_SAMPLE_FMT_FLTP, 1);

     for (int i = 0; i < frame->linesize[0]/4; i++)
     {
       fwrite(frame->data[0] + 4*i, 1, 4, fp_audio);
       fwrite(frame->data[1] + 4*i, 1, 4, fp_audio);
       ref++;
     }



     av_frame_unref(frame);
    }

    but the pcm sounds strange, I also tried directed write as follows

    fwrite(frame->data[0], 1, frame->linesize[0], fp_audio);

    or :

    fwrite(frame->data[0], 1, frame->linesize[0], fp_audio);
    fwrite(frame->data[1], 1, frame->linesize[0], fp_audio);

    I know that the decoded pcm is AV_SAMPLE_FMT_FLTP
    any help would be appreciated

  • FFmpeg API books, tutorial, etc [duplicate]

    12 mai 2016, par Alecs

    Possible Duplicate :
    ffmpeg C API documentation/tutorial

    Hi !
    A have a task to write on-line screen recording using FFmpeg library with C++, but I can’t find some documentation, manual, textbook etc. I didn’t work with audio-video before at all, I don’t know how to start, and can’t find where to learn it. Can you help me with that ?