Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (106)

  • 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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (12438)

  • 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) ?