Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (54)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4743)

  • avcodec/tiff : Make decoder init-threadsafe

    27 novembre 2020, par Andreas Rheinhardt
    avcodec/tiff : Make decoder init-threadsafe
    

    The only thing that stands in the way of adding the
    FF_CODEC_CAP_INIT_THREADSAFE flag to the TIFF decoder is its usage
    of ff_codec_open2_recursive() : This function requires its caller to hold
    the lock for the mutex that guards initialization of AVCodecContexts
    whose codecs have a non-threadsafe init function and only callers whose
    codec does not have the FF_CODEC_CAP_INIT_THREADSAFE flag set hold said
    lock (the others don't need to care about said lock). But one can set
    the flag if one switches to avcodec_open2() at the same time.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/tiff.c
  • hdsenc : Clear the previous codec tag when setting up the chained muxer

    18 novembre 2014, par Martin Storsjö
    hdsenc : Clear the previous codec tag when setting up the chained muxer
    

    The chained flv muxer wants one set of tags - normally this set
    could be signaled via the AVOutputFormat codec_tag field (as
    smoothstreamingenc and dashenc do). hdsenc doesn’t signal it, since
    the FLV codec tag arrays aren’t exported from flvenc.c. This can
    lead to the caller keeping an original codec tag from the originating
    container here, which would then be a mismatch for the FLV muxer.
    Since we don’t really care about what codec tag the caller might
    have set, just clear it and let the lavf muxer layer set the right
    one for the chained FLV muxer later instead.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/hdsenc.c
  • ffmpeg rtsp_transport to rtmp issues

    16 mars 2015, par RandomCouch

    I’m working on a project that requires taking rtsp links from youtube, and using ffmpeg to stream those videos to an rtmp server. My solution works, however it is having some issues.

    I’m using these settings :

    -max_delay 0 -initial_pause 0 -rtsp_transport udp -i " + inputLink + " -vcodec libx264 -acodec mp3 -ab 48k -bit_rate 450 -r 25 -s 640x480 -f flv "  + stream

    inputLink is replaced with the rtsp link, and stream is replaced with the rtmp server link

    So this works but here are the issues I’m having :

    • At the beginning of each video, there is a big lag spike/lots of frames dropped, and then the video resyncs and plays normally
    • Some videos would crash ffmpeg, with a "Conversion failed" message and many frames dropped during the conversion/stream.

    • At the end of each video it would start lagging/ dropping frame, right near the end of the video, in other words it doesn’t end normally, every video ends by lagging out / dropping frames

    I’ve been struggling for a long time just to get this working, and now I finally did, I just need to perfect it by taking care of those two issues, if anyone has useful information about the rtsp_transport protocol and how to make it stream with no issues, I would greatly appreciate it. Thanks !