Recherche avancée

Médias (91)

Autres articles (36)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (8292)

  • avcodec/packet : add an LCEVC enhancement data payload side data type

    29 août 2024, par James Almer
    avcodec/packet : add an LCEVC enhancement data payload side data type
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/packet.c
    • [DH] libavcodec/packet.h
    • [DH] libavcodec/version.h
  • Stream data chunk with ffmpeg

    22 mai 2020, par Amit Levy

    I have a react native app, and i'm using 'react-native-sound-recorder' to capture audio data chunks.

    &#xA;&#xA;

    AudioRecord.on(&#x27;data&#x27;, (data) => {&#xA;  // use data here&#xA;});&#xA;

    &#xA;&#xA;

    I'm able to save the file to file system, but I would like to stream the 'data' variable (the audio data chunk) using ffmpeg to server, but can't find the proper ffmpeg command (all i found was commands to stream from specific input or file).

    &#xA;

  • How to save a vvideo from a RTSP server using Ffmpeg in C++ ?

    20 septembre 2021, par Tolga

    I am using Ffmpeg remuxing example code to save a mp4 file into another file. However my actual goal is saving the video from a RTSP server. The example works fine with the normal .mp4 files but when I try to save the video from RTSP Server I get following error on command prompt.

    &#xA;

    [mp4 @ 02F9A8C0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 18000 >= 3000&#xA;

    &#xA;

    The RTSP server is created on my computer for testing using python gstream. I used the script here.

    &#xA;

    Ffmpeg code in C++ is below where error occurs.

    &#xA;

            iCamera->stream = iCamera->fmt->streams[iCamera->pkt->stream_index];&#xA;        iCamera->pkt->stream_index = map->stream_map[iCamera->pkt->stream_index];&#xA;        oCamera->stream = oCamera->fmt->streams[iCamera->pkt->stream_index];&#xA;&#xA;        iCamera->pkt->pts = av_rescale_q_rnd(iCamera->pkt->pts, iCamera->stream->time_base, oCamera->stream->time_base, AVRounding(AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));&#xA;        iCamera->pkt->dts = av_rescale_q_rnd(iCamera->pkt->dts, iCamera->stream->time_base, oCamera->stream->time_base, AVRounding(AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));&#xA;        iCamera->pkt->duration = av_rescale_q(iCamera->pkt->duration, iCamera->stream->time_base, oCamera->stream->time_base);&#xA;        iCamera->pkt->pos = -1;&#xA;        &#xA;        if (av_interleaved_write_frame(oCamera->fmt, iCamera->pkt)) {&#xA;            printf("Error occured while muxing packet.\n"); exit(1);&#xA;        }&#xA;

    &#xA;