Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (76)

  • 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 ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8234)

  • Do not suggest to use gas-preprocessor on aix where it doesn’t work.

    16 juin 2014, par Carl Eugen Hoyos
    Do not suggest to use gas-preprocessor on aix where it doesn’t work.
    
    • [DH] configure
  • 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;