Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (37)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11054)

  • FFMpeg - Video conversion - .OGG to .MP4

    21 septembre 2018, par Hue Man

    After scouring the net, I can’t find anyone else trying to do this :
    Convert an OGG video format to MP4 video (usualy people are doing this the other way round).
    I have FFMpeg working just fine converting WEBM to MP4 but it just doesn’t seem to like OGG files.
    The official FFMpeg documentation says that it can both Encode AND Decode OGG files but for some reason it isn’t.
    Any ideas ?

  • x86 : Avoid self-relative expressions on macho64

    23 mai 2017, par Henrik Gramner
    x86 : Avoid self-relative expressions on macho64
    

    Functions that uses self-relative expressions in the form of [foo-$$]
    appears to cause issues on 64-bit Mach-O systems when assembled with nasm.
    Temporarily disable those functions on macho64 for the time being until
    we've figured out the root cause.

    • [DH] common/bitstream.c
    • [DH] common/pixel.c
    • [DH] common/quant.c
    • [DH] encoder/cabac.c
    • [DH] encoder/rdo.c
  • How can I use ffmpeg to download an m3u8 with multiple audio tracks ?

    4 septembre 2018, par casolorz

    I want to download an m3u8 with multiple audio tracks but when I use ffmpeg to do it the file ends up with just one audio track. What switches do I need on ffmpeg to get all the audio tracks that are on the m3u8 manifest ?

    This is the command I used :

    ffmpeg -i  https://domain/path_to_m3u8 -c copy multitrack.mp4

    Thanks.