Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (35)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (2651)

  • aaccoder : move the quantization functions to a separate file

    21 août 2015, par Rostislav Pehlivanov
    aaccoder : move the quantization functions to a separate file
    

    This commit moves the quantizer to a separate header file.
    This allows the quantizer to be used from a separate files outside
    of aaccoder without having to put another function pointer and will
    result in a slight speedup as the compiler can do more optimizations.

    This is required for commits following.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacenc_quantization.h
  • aacenc : Move small misc. functions to a separate file

    29 juillet 2015, par Rostislav Pehlivanov
    aacenc : Move small misc. functions to a separate file
    

    As well as tables littered everywhere, functions were spread
    out all across the encoder’s files. This moves them to a single
    place where they can be used by either the encoder’s main files
    or additional encoder files. Additionally, it changes the type
    of some to ’inline’ to enable us to simply put them in a header
    file and possibly gain some speed due to compiler optimizations.

    Signed-off-by : Claudio Freire <klaussfreire@gmail.com>

    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc_utils.h
  • aacenc : move the generation of ff_aac_pow34sf_tab[]

    17 juillet 2015, par Rostislav Pehlivanov
    aacenc : move the generation of ff_aac_pow34sf_tab[]
    

    This commit moves the generation of ff_aac_pow34sf_tab[] out of the
    encoder and into the table generator. The original commit log for
    this table in 2011 actually mentions that it should be moved outside
    but this never happened.

    This is the first commit which cleans up the encoder a little.

    Reviewed-by : Claudio Freire <klaussfreire@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aac_tablegen.c
    • [DH] libavcodec/aac_tablegen.h
    • [DH] libavcodec/aac_tablegen_decl.h
    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h