Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (41)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6248)

  • Pass double pointer parameter through P/Invoke when it is NULL

    1er août 2015, par BartMao

    I try to call FFMPEG method via P/Invoke

    int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);

    So my P/Invoke method defined like this :

    [DllImport("avformat-55", EntryPoint = "avformat_find_stream_info", CallingConvention = CallingConvention.Cdecl)]
       public extern static int AVFormatFindStreamInfo(IntPtr ic, ref IntPtr options);

    and I need pass an IntPtr.Zero for the options, so I call this way :

    var p = IntPtr.Zero;
    rst = AVFormatFindStreamInfo(context, ref p);

    and an AccessViolation exception throws.

    But when I remove the ref from the signature, and directly pass an IntPtr.Zero to it, it actually works.
    I think the signature with ref keyword is the right way, but I don’t know why the exception throws.

  • how do I set speed rate (ex:double speed) in FFmpeg library ?

    19 avril 2018, par geeeek

    I’m working on rtsp live video from ffmpeg and rendering it on the screen.

    However, the image is displayed after 1 to 2 seconds.

    to reduce video delay, So I want to increase the playback speed in my program.

    int64_t duration = m_formatCtx-> duration;
    duration = duration * 1000;
    av_seek_frame (m_formatCtx, m_videoStream, duration, AVSEEK_FLAG_ANY);
    av_seek_frame (m_formatCtx, m_audioStream, duration, AVSEEK_FLAG_ANY);
    while (av_read_frame (m_formatCtx, & m_packet)> = 0)

    I can not get the result I want in this way.

  • Revert "mov : Double-check that alias path is not an absolute path"

    10 juillet 2015, par Vittorio Giovara
    Revert "mov : Double-check that alias path is not an absolute path"
    

    This reverts commit 9286de045968ad456d4e752651eec22de5e89060.
    The change broke support for legit absolute file paths.

    Reported-by : Maksym Veremeyenko <verem@m1stereo.tv>.

    • [DH] libavformat/mov.c