Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (53)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • I can't use ffmpeg loudnorm filtter

    27 mai 2019, par imQ

    I want to use FFmpeg loudnorm filter, so I build FFmpeg library on my Android Studio project.But its output file just has 0 byte.
    How can I use it ? And how can I get correct output file ?
    ( If I use ’volume’ filter, I can get correct output file. ’Loudnorm’ filter make me crazy)

    ffmpeg.excute(command,new ExecuteBinaryResponseHandler())

    command = new String[]{"-i",original_path,"-af", "loudnorm=I=-15:TP=-2:LRA=11:print_format=none","-f",dest.getAbsolutePath()};
  • Revision 8092080216 : vp9_filter : move table alignment decl's to header avoids mismatched alignment w

    15 février 2014, par James Zern

    Changed Paths :
     Modify /vp9/common/vp9_filter.c


     Modify /vp9/common/vp9_filter.h



    vp9_filter : move table alignment decl's to header

    avoids mismatched alignment warnings in visual studio builds

    Change-Id : I2cedb8042fd47e708bde3f7168a6fb4bd9aaa569

  • Basic Video Player Using Qt And FFmpeg

    7 mars 2016, par Thibaud Auzou

    I am trying to program a little and basic video player using Qt and FFmpeg. I first recompiled Qt to use with Visual Studio 2015.

    Once done I created my MainWindow, the MenuBar, the PushButtons that I needed, etc.

    Now that I wrote the main structure of this little project I am struggling with integrating FFmpeg into it. I believe I am trying to use libavcodec to read a video. But to be honest I am not sure.

    I am quite lost at this point, several hours on Google and still lost.

    While the documentation of Qt was quite easy to handle, the documentation of FFmpeg is kinda vague...

    An of you has an advise regarding FFmpeg ? A good tutorial ?