Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10450)

  • FFprobe Check Stream Link

    16 juillet 2015, par Krasic

    I am trying to use FFprobe to test if a streaming link is active or not.

    For example this is a working streaming link :

    ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/185

    I do get output which mean link is active.

    However, once I change link to something not work :

    ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/18555555555

    The command keeps running in background with no result.

    Is there a way to bypass this, or is there any ffprobe timeout parameter ?
    I couldn’t find it from the official website documentation.

  • avfilter/buffersink : return EOF if closed link in av_buffersink_get_frame_flags()

    17 mai 2015, par Michael Niedermayer
    avfilter/buffersink : return EOF if closed link in av_buffersink_get_frame_flags()
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/buffersink.c
  • How to correctly link ffmpeg to static build "g++ -static" ?

    22 juillet 2014, par user2212461

    I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :

    g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
    /path/to/libavformat.a /path/to/libavcodec.a

    but get the following list of errors, although I configured ffmpeg with —disable-libopus :

    libavcodec/opusdec.c:376: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:222: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:163: error: undefined reference to 'swr_init'
    libavcodec/opusdec.c:169: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:236: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:117: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:408: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:557: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:579: error: undefined reference to 'swr_free'
    libavcodec/opusdec.c:629: error: undefined reference to 'swr_alloc'

    What am I doing wrong here ?