Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (76)

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

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

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

Sur d’autres sites (9315)

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

  • 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

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