Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (3971)

  • fftools/ffmpeg_filter : Fix check for mjpeg encoder

    13 avril 2021, par Andreas Rheinhardt
    fftools/ffmpeg_filter : Fix check for mjpeg encoder
    

    The MJPEG encoder supports some pixel format/color range combinations
    only when strictness is set to unofficial or less. Before commit
    059fc2d9da5364627613fb3e6424079e14dbdfd3 said encoder's pix_fmts array
    only included the pixel formats supported with default strictness.
    When strictness was <= unofficial, fftools/ffmpeg_filter.c used
    an extended list of pixel formats instead of the encoder's including
    the pixel formats only supported when strictness <= unofficial.

    Said commit turned the logic around : The encoder's pix_fmts array now
    included all pixel formats and fftools/ffmpeg_filter.c instead used
    a small list of all pixel formats supported when strictness is >
    unofficial and the encoder's pixel formats instead. In particular,
    the codec's pix_fmt is not used when strictness is normal.

    This works for the mjpeg encoder ; yet it did not work for other
    (hardware-based) mjpeg encoders, because the check for whether one is
    using the MJPEG encoder is wrong : It just checks the codec id.
    So if one used strict unofficial with a hardware-accelerated MJPEG
    encoder before commit 059fc2d9da53, the unofficial (non-hardware)
    pixel formats of the MJPEG encoder would be used ; since said commit
    the codec's pixel formats are overridden at ordinary strictness
    by the ordinary MJPEG pixel formats. This leads to format conversion
    errors lateron which were reported in #9186.

    The solution to this is to check AVCodec.name instead of its id.

    Fixes ticket #9186.

    Tested-by : Eoff, Ullysses A <ullysses.a.eoff@intel.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_filter.c
  • configure : Add missing mpegvideo dependency for IPU decoder

    7 mai 2021, par Andreas Rheinhardt
    configure : Add missing mpegvideo dependency for IPU decoder
    

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

    • [DH] configure
  • avcodec/ttmlenc : Don't confuse capabilities and caps_internal

    7 mai 2021, par Andreas Rheinhardt
    avcodec/ttmlenc : Don't confuse capabilities and caps_internal
    

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

    • [DH] libavcodec/ttmlenc.c