Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (56)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (11267)

  • mathops/x86 : work around inline asm miscompilation with GCC 4.8.1

    15 juin 2013, par Hendrik Leppkes
    mathops/x86 : work around inline asm miscompilation with GCC 4.8.1
    

    The volatile is not required here, and prevents a miscompilation with GCC
    4.8.1 when building on x86 with —cpu=i686

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

    • [DH] libavcodec/x86/mathops.h
  • ffmpeg 'av_seek_frame()' not work in bink video

    19 juillet 2020, par ghoflvhxj

    I'm trying to play video in my game by using ffmpeg-avformatlib library.

    &#xA;

    'av_seek_frame()' work correctly when open '.avi' file.

    &#xA;

    but if open .bik file, it's not work however the function return 0(success) and seek to 0 frame.

    &#xA;

    anyone who know about this problem ? :( please tell me please...

    &#xA;

    void CMovie::Play(const Time startFrame, const Time endFrame, const bool loop/* = false*/)&#xA;{&#xA;    ...&#xA;    if (m_bStart)&#xA;    {&#xA;        av_seek_frame(GetFormatContext(), GetVideoStreamIndex(), startFrame, AVSEEK_FLAG_FRAME);&#xA;        m_bStart = false;&#xA;    }&#xA;    ...&#xA;}&#xA;

    &#xA;

    i uploaded sample video player and video which call 'av_seek_frame()' to seek.

    &#xA;

    play fire.bik and click left or right button, you can see seek to 0 frame. it's same as my program.

    &#xA;

    check it please.&#xA;https://drive.google.com/file/d/1DVrX3EOzjxSfEA4EYpeSREaE2RLhB28Q/view?usp=sharing

    &#xA;

  • avcodec/vp3 : Move work after ff_thread_finish_setup

    11 août 2022, par Andreas Rheinhardt
    avcodec/vp3 : Move work after ff_thread_finish_setup
    

    all_fragments is not synced between threads ; resetting it can wait.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp3.c