Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (54)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les images

    15 mai 2013
  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (7939)

  • Is it possible to use libx264 to convert H264 raw data to a image(PNG/JPEG) without ffmpeg ?

    1er juillet 2017, par hipitt

    I received some video data via RTP / RTSP / SIP, the data is encoded by H264 and sent by a IP camera. I would like to convert H264 keyframe data into a picture and analyze whether it contains faces. I do not want to use FFMPEG such a huge library, just use libx264 and opencv can do it ? How ?

    Thanks.

  • 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

  • How to demux mpegts data and mux it in mp4 using ffmpeg in c++ ?

    29 septembre 2016, par M.Taha

    Hello I am streaming mpegts data and receaving mpegts data at other end . And i am able to demux mpegts data seperately into h264 and aac. Now i have to mux this h264 and aac in mp4 format, I am able to do muxing of h264 alone in mp4 but as soon as i am muxing h264 with aac in mp4 my program gets crashed.

    Help me in doing so. Any kind of help will be really appreciated.