Recherche avancée

Médias (2)

Mot : - Tags -/rotation

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)

  • log : allow color highlighting in Cygwin’s mintty

    4 avril 2014, par James Darnley
    log : allow color highlighting in Cygwin’s mintty
    

    Configure will detect the availability of the Windows’ console functions and set
    HAVE_SETCONSOLETEXTATTRIBUTE. Meaning av_log will use those functions to
    control colours. When ffmpeg is run in Cygwin’s mintty terminal emulator it
    will not use colour highlighting in this case.

    Mintty responds to the usual escape code colours (it even supports 256 colours).
    Windows’ cmd.exe does not. Fortunately it seems that Cygwin’s emulation layer
    now translates the basic 16 colours into Windows’ Console command functions.

    That means that we can have av_log use the standard colour commands and let
    ffmpeg print colours in both mintty and cmd.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/log.c
  • configure : check and use -Wempty-body

    4 avril 2014, par James Darnley
    configure : check and use -Wempty-body
    

    Would have shown the trailing semi-colon in lavu/log.c that broke detection of
    256 colour capable terminals.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
  • 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>

    • [DH] libavformat/isom.c