Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (107)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (13938)

  • mp3on4 : set channel layout

    25 septembre 2011, par Justin Ruggles

    mp3on4 : set channel layout

  • Fix multi-channel AAC encoding.

    15 juin 2011, par Carl Eugen Hoyos

    Fix multi-channel AAC encoding.

  • avfilter/af_headphone : Use uint64_t for channel mapping

    24 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Use uint64_t for channel mapping
    

    The headphone filter has an option for the user to specify an assignment
    of inputs to channels (or from pairs of channels of the second input to
    channels). Up until now, these channels were stored in an int containing
    the logarithm of the channel layout. Yet it is not the logarithm that is
    used lateron and so a retransformation was necessary. Therefore this
    commit simply stores the uint64_t as is, avoiding the retransformation.

    This also has the advantage that unset channels (whose corresponding
    entry is zero) can't be mistaken for valid channels any more ; the old
    code had to initialize the channels to -1 to solve this problem and had
    to check for whether a channel is set before the retransformation
    (because 1 << -1 is UB).

    The only downside of this approach is that the size of the context
    increases (by 256 bytes) ; but this is not exceedingly much.

    Finally, the array has been moved to the end of the context ; it is only
    used a few times during the initialization process and moving it
    decreased the offsets of lots of other entries, reducing codesize.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c