Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (53)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • 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