Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (50)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (8017)

  • rtp : Add an option to set the send/receive buffer size

    29 mars 2015, par Luca Barbato
    rtp : Add an option to set the send/receive buffer size
    

    It gets forwarded down to UDP.

    • [DH] libavformat/rtpproto.c
  • Receive RTMP stream

    4 janvier 2019, par luddite478

    I have raspberry pi with camera module where i run this command :

    ffmpeg -i <camera> -c copy -f flv rtmp://192.168.0.102:11111
    </camera>

    192.168.0.102:11111 here is my pc. I need to receive this stream and pass it to ffmpeg. How can i do this ?
    I tried it with TCP and netcat with this code :

    Raspberry :

    ffmpeg -i <camera> -c copy -f mpegts tcp://192.168.0.102:11111
    </camera>

    PC :

    mkfifo fifo

    nc -l -v -p 11111 > fifo &amp;

    ffmpeg -i fifo  file.avi

    It works fine, but what can i use instead of netcat for rtmp ?

    Following throws error :

    ffmpeg -i rtmp://0.0.0.0:11111 file.avi

    [tcp @ 0x558e3f535540] Connection to tcp://0.0.0.0:11111 failed: Connection refused
    [rtmp @ 0x558e3f534de0] Cannot open connection tcp://0.0.0.0:11111
    rtmp://0.0.0.0:11111: Connection refused
  • avcodec/mediacodecdec : try to receive a frame after signaling EOF to the codec

    24 avril 2019, par Matthieu Bouron
    avcodec/mediacodecdec : try to receive a frame after signaling EOF to the codec
    

    Avoids returning EAGAIN after signaling EOF to the codec in
    ff_mediacodec_dec_send() so we can try to receive a frame before
    returning in mediacodec_receive_frame().

    This helps avoiding an extra round-trip between avcodec_send_frame() and
    avcodec_receive_frame() while draining the remaining frames.

    • [DH] libavcodec/mediacodecdec.c
    • [DH] libavcodec/mediacodecdec_common.c