Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (107)

  • 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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

Sur d’autres sites (13022)

  • lavu/mem : add av_dynarray2_add()

    14 avril 2013, par Stefano Sabatini
    lavu/mem : add av_dynarray2_add()
    

    Based on a patch by Clément Bœsch.

    See thread :
    From : Clément Bœsch <ubitux@gmail.com>
    Subject : [FFmpeg-devel] [PATCH 1/5] lavu : add av_dynarray_alloc_elem().
    Date : Sun, 14 Apr 2013 03:07:54 +0200

    • [DH] doc/APIchanges
    • [DH] libavutil/mem.c
    • [DH] libavutil/mem.h
    • [DH] libavutil/version.h
  • How to dump raw RTSP stream to file ?

    16 décembre 2016, par Felix

    Is it possible to dump a raw RTSP stream to file and then later decode the file to something playable ?

    Currently I’m using FFmpeg to receive and decode the stream, saving it to an mp4 file. This works perfectly, but is CPU intensive, and will severely limit the number of RTSP streams I can receive simultaneously on my server.

    I would like to save the stream to file without decoding it, and delay the decoding part to when the file needs to be opened.

    Is this possible ?

    I have tried VLC, which is even more CPU intensive than FFmpeg. I’ve also looked at this question where the answer says dumping RTSP to file is not useful, and this question, where the comment below the question says "Raw RTSP content is not well suited for save and replay...", which seems to indicate that there is way.

    Thanks in advance !


    EDIT
    Here is the command I’m using for FFmpeg :

    ffmpeg -i rtsp://@192.168.241.1:62159 -r 15 C:/DB_Videos/2013-04-30 17_18_34.703.mp4

  • File input of avformat_open_input in ffmpeg

    28 février 2016, par Justin Chang

    I’m trying to use function avformat_open_input in FFmpeg to open the file which contains Chinese word.

    For example :

    char* file="C:/測試/baby.mp4";

    avformat_open_input(&amp;pFormatCtx, file, NULL, NULL);

    But, it seems to be failed.

    My question is how do I pass the file path which contains Chinese (or other languages except for English) ?