Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (40)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

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

Sur d’autres sites (8511)

  • Has anyone used Azure vm's for gpu-accelerated video enc/decoding with FFmpeg/libav ?

    4 mai 2017, par user3776020

    I am trying to use NVIDIA hardware acceleration with FFmpeg/libav on a Microsoft Azure GPU vm (any of the new N-series). I am able to get it working with a comparable AWS vm, but am not having luck with Azure.

    I have a different question posted here detailing the specific problem I’m running into (Trouble with hardware-assisted encoding/decoding via FFmpeg on Azure GPU vm’s (ubuntu 16.04)), but have since realized that the better question to ask is if anyone has been able to achieve it, full-stop.

    If so, would you please share the details of your environment (type of vm, os version, installation commands, etc). Thanks !

  • FFMPEG compilation without compiler optimization

    4 avril 2018, par Kamil_H

    I’m compiling ffmpeg for win32 using Microsoft cl compiler. I need to compile it without any optimization, so added configure —extra-cflags= -Od".

    Compilation goes fine, but there are a few places like this :

    Last 3 ifs.

    The code compiles, but doesn’t link because calls like ff_sbrdsp_init_arm(s) ; are not removed by compiler. Of course everything is fine when compiling with optimization. Then compiler removes all if(0)s.

    There are several similar places in ffmpeg. Why if(0) is used instead of preprocessor’s #if 0 ?

    Is there any hidden trick behind this ?

  • FFMPEG compilation without compiler optimization

    11 juin 2014, par Kamil_H

    I’m compiling ffmpeg for win32 using Microsoft cl compiler. I need to compile it without any optimization, so added configure —extra-cflags= -Od".

    Compilation goes fine, but there are a few places like this :

    Last 3 ifs.

    The code compiles, but doesn’t link because calls like ff_sbrdsp_init_arm(s) ; are not removed by compiler. Of course everything is fine when compiling with optimization. Then compiler removes all if(0)s.

    There are several similar places in ffmpeg. Why if(0) is used instead of preprocessor’s #if 0 ?

    Is there any hidden trick behind this ?