Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (85)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (8086)

  • x86inc : remove misaligned cpu flag

    11 septembre 2013, par Henrik Gramner
    x86inc : remove misaligned cpu flag
    

    Prevents a crash if the misaligned exception mask bit is
    cleared for some reason.

    Misaligned SSE functions are only used on AMD Phenom CPUs
    and the benefit is miniscule. They also require modifying
    the MXCSR control register and by removing those functions
    we can get rid of that complexity altogether.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavutil/x86/x86inc.asm
  • How to set "ch_layout" in ffmpeg 6.1 ?

    9 juillet 2024, par Steven porite

    In 6.1 Ffmpeg, it use "ch_layout" to replace the "channel_layout" and "number". The "ch_layout" is "AVChannelLayout *" type. This type is defined in channel_layout.h, some kind of "ch_layout" is defined in this file too.&#xA;If I want to use the "av_dict_set_int()" set the "ch_layout" to "AV_CHANNEL_LAYOUT_STEREO", what should I fill to the "value" ?

    &#xA;

    /**&#xA; * Macro to define native channel layouts&#xA; *&#xA; * @note This doesn&#x27;t use designated initializers for compatibility with C&#x2B;&#x2B; 17 and older.&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MASK(nb, m) \&#xA;    { /* .order */ AV_CHANNEL_ORDER_NATIVE, \&#xA;      /* .nb_channels */  (nb), \&#xA;      /* .u.mask */ { m }, \&#xA;      /* .opaque */ NULL }&#xA;&#xA;/**&#xA; * @name Common pre-defined channel layouts&#xA; * @{&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MONO              AV_CHANNEL_LAYOUT_MASK(1,  AV_CH_LAYOUT_MONO)&#xA;#define AV_CHANNEL_LAYOUT_STEREO            AV_CHANNEL_LAYOUT_MASK(2,  AV_CH_LAYOUT_STEREO)&#xA;#define AV_CHANNEL_LAYOUT_2POINT1           AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2POINT1)&#xA;#define AV_CHANNEL_LAYOUT_2_1               AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2_1)&#xA;

    &#xA;

    /**&#xA; * Convenience wrapper for av_dict_set() that converts the value to a string&#xA; * and stores it.&#xA; *&#xA; * Note: If ::AV_DICT_DONT_STRDUP_KEY is set, key will be freed on error.&#xA; */&#xA;int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags);&#xA;

    &#xA;

  • avcodec/wavpackenc : add support for encoding unspec channel layouts

    14 août 2023, par Paul B Mahol
    avcodec/wavpackenc : add support for encoding unspec channel layouts
    

    Also write 0 for chmask if mask have bits outside of first 32 bits,
    as wavpack does not support more bits than 32 for channel layouts.

    • [DH] libavcodec/wavpackenc.c