Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (72)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • vf_hwmap : Pass mapping mode when deriving frames context on an existing device

    25 juin 2017, par Mark Thompson
    vf_hwmap : Pass mapping mode when deriving frames context on an existing device
    

    To match creation on a newly-derived device. (This was missed earlier
    because the mode is only used in some cases.)

    • [DH] libavfilter/vf_hwmap.c
  • Record the release date.

    3 mars 2015, par Ralph Giles
    Record the release date.
    

    Also two more copyright bumps which somehow didn't make the earlier commit.

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19460 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] CHANGES
    • [DH] COPYING
    • [DH] README
  • avcodec/vc1dec : Re-order init to avoid initting hwaccel too early

    8 août 2015, par Philip Langdale
    avcodec/vc1dec : Re-order init to avoid initting hwaccel too early
    

    At least for vdpau, the hwaccel init code tries to check the video
    profile and ensure that there is a matching vdpau profile available.

    If it can’t find a match, it will fail to initialise.

    In the case of wmv3/vc1, I observed initialisation to fail all the
    time. It turns out that this is due to the hwaccel being initialised
    very early in the codec init, before the profile has been extracted
    and set.

    Conceptually, it’s a simple fix to reorder the init code, but it gets
    messy really fast because ff_get_format(), which is what implicitly
    trigger hwaccel init, is called multiple times through various shared
    init calls from h263, etc. It’s incredibly hard to prove to my own
    satisfaction that it’s safe to move the vc1 specific init code
    ahead of this generic code, but all the vc1 fate tests pass, and I’ve
    visually inspected a couple of samples and things seem correct.

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavcodec/vc1dec.c