Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (64)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9840)

  • Revision f41adbb468 : Remove duplicate or unused code in encoder/quantize.c. Also make some minor sty

    13 octobre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp8/encoder/quantize.c Modify /vp8/encoder/quantize.h Remove duplicate or unused code in encoder/quantize.c. Also make some minor stylistic changes to bring the code closer to the style guide. Remove checks against i8x8/bpred in the mb-codepath, since these do individual (...)

  • lavc : add a header for internal generic-layer APIs

    20 juin 2023, par Anton Khirnov
    lavc : add a header for internal generic-layer APIs
    

    The goal is to distinguish between APIs provided by the generic layer to
    individual codecs and APIs internal to the generic layer.

    Start by moving ff_decode,encode_receive_frame() and
    ff_decode,encode_preinit() into this new header, as those functions
    are called from generic code and should not be visible to individual
    codecs.

    • [DH] libavcodec/avcodec.c
    • [DH] libavcodec/avcodec_internal.h
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/decode.h
    • [DH] libavcodec/encode.c
    • [DH] libavcodec/encode.h
  • ffmpeg seems to be capping my output

    11 septembre 2012, par Kurt Spindler

    I'm trying to extract individual frames from a video.

    ffmpeg -i face_source.wmv face_sourceframes/image%03d.jpg

    is almost working just fine. The first six or so appear perfect (have roughly 30kB file size), but then they continuously degrade (e.g. 23kB, 17kB, etc.) until all frames are 11kB. Of course, these frames are pixelated and not desired.

    I tried forcing a bitrate with the -b option. ffmpeg tells me this about the inupt video :

     Duration: 00:00:10.07, start: 0.000000, bitrate: 781 kb/s

    So I set bitrate, first using -b 781k, and then, just to be safe, also tried doubling it, to -b 1562k. Neither of these options made any apparent difference in the output.

    Any help would be appreciated ! Thank you !