Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7981)

  • isom : convert mp4 dvdsub extradata to vobsub format

    12 mars 2014, par wm4
    isom : convert mp4 dvdsub extradata to vobsub format
    

    mp4 files embedding DVD subtitles do not use the same extradata format
    as the rest of Libav expects. The subtitle decoder in libavcodec in
    particular does not understand this format.

    Convert the extradata to the vobsub .idx format. mp4 stores the palette
    as binary 32 bit ints in YUV. The subtitle resolution is stored
    separately in the track header, which we access through AVStream.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/isom.c
  • Encode 256 Palletized bitmaps to h264 using libav

    12 février 2014, par user3239282

    Am converting 32 bpp bitmap to 8bpp with 256 color pallete, this image i want to encode using h264 and send it over socket. And on the other end decode the frame and display it on my UI.

    From Encoder, side :

    1. Capture 32 bpp image.
    2. Quantize the image to 8bpp with 256 color pallete.
    3. Sws_scale the image from PIX_FMT_GRAY8 to YUV420P.
    4. Encode it with h264 and send it over socket.

    From Decoder, side.

    1. Receive image.
    2. Decode image.
    3. Sws_scale from YUV420P to PIX_FMT_GRAY8
    4. And display it on UI along with palette information(Sent from Encoder over socket).

    When the above steps are followed, i get a totally distorted image. And when i dont use the color palette i get a black and white image.

    Am not not clear how to encode the 8bpp 256 palette bitmaps using h264 and decode them accordingly. Please help me regarding this.

    Am working with C++ on windows platform.

    Thanks in advance,
    Paul.

  • isom : Simplify mov_rewrite_dvd_sub_extradata()

    20 mars 2014, par Michael Niedermayer
    isom : Simplify mov_rewrite_dvd_sub_extradata()
    

    This avoids the 2nd buffer and fixes the palette truncated check

    • [DH] libavformat/isom.c