Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (72)

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

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8307)

  • AVI to FLV. Getting files with high quality ? [closed]

    22 octobre 2012, par Guttemberg

    Using FFMPEG, what would be the command line to the FLV skirt with the best possible quality ?

    You can convert a. Avi to. Flv, and flv end out with higher quality than the original avi ?

    I'm using FormatFactory, I used Boxoft avi to flv, quality and could not in the end result. Could recommend another program ?

    I intend to provide the videos on a website, via streaming.

  • How to convert videos by looping from the directory to images using ffmpeg ?

    16 juin 2022, par anon_99

    I'm learning how to do image video conversion using ffmpeg. I know how to convert from 1 video to several frames, but which commands to use to convert several videos into frames ?

    


  • avutil/aes : Don't use misaligned pointers

    21 octobre 2022, par Andreas Rheinhardt
    avutil/aes : Don't use misaligned pointers
    

    The AES code uses av_aes_block, a union consisting of
    uint64_t[2], uint32_t[4], uint8_t[4][4] and uint8_t[16].
    subshift() performs byte-wise manipulations of two av_aes_blocks,
    but when encrypting, it does so with a shift of two bytes ;
    more precisely, it uses
    "av_aes_block *s1 = (av_aes_block *) (s0[0].u8 - s)"
    and lateron uses the uint8_t[16] member to access s0.
    Yet av_aes_block requires to be suitably aligned for
    the uint64_t[2] member, which s0[0].u8 - 2 is certainly
    not. This is in violation of 6.3.2.3 (7) of C11. UBSan
    reports this in the aes_ctr, mov-3elist-encrypted,
    mov-frag-encrypted, mov-tenc-only-encrypted and srtp
    tests.
    Furthermore, there is another issue here : The pointer points
    outside of s0 ; this works, because all the accesses lateron
    use an index >= 3. (Clang-)UBSan reports this as
    "runtime error : index -2 out of bounds for type 'uint8_t[16]'".

    This commit fixes both of these issues : The latter issue
    is fixed by applying an offset of "+ 3" during the cast
    and subtracting this from the indices used lateron.
    The former issue is solved by not casting to av_aes_block*
    at all ; instead simply cast to unsigned char*.

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

    • [DH] libavutil/aes.c