Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (19)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5034)

  • ffmpeg strftime no effect on windows

    18 mai 2020, par Ben

    I'm trying to auto mark the output file with timestamps with ffmpeg. Here's my test cmd :

    



    .\ffmpeg.exe -y -loglevel 99 -i test.mp3 -strftime 1 %Y.ogg


    



    I expected a file named 2020.ogg, however only got %Y.ogg. In another word, output filename is not processed by strftime(). I'm using powershell so there should be no relation with cmd's %% escaping.

    



    Here's the output : https://pastebin.com/LUVh2kFA I'm using static builds from https://ffmpeg.zeranoe.com (Thanks Zeranoe !) I confirmed that the problem exists in v4.2.2 and git-20200515. Is there any chance to fix it or am I doing it wrong ?

    


  • wrong ffmpeg version for xuggler

    13 décembre 2011, par kerel

    I am trying to get Xuggle working on Ubuntu.
    This is however my first time using a Unix system.

    After installing Xuggle and correcting the PATH files I tried some very simple code from tutorials at the xuggle website. But once I attempt to debug my code, it stops and eclipse says

    Suspended (exeption IllegalArgumentException)

    and refers to line 488 of MediaReader.readPacket()

    After searching possible explanations I found that my FFMPEG version was not the version Xuggle needs. When I test my FFMPEG version from command line with
    $ ffmpeg /invalid/file/ it displays --extra-version='4:0.7.2-1ubuntu1' but according to the xuggle site the --extra-version= should include the word "xuggle". Following their installation procedures does not change anything.

    I downloaded the source code from SVN, which includes a ffmpeg folder. I assume this is the ffmpeg version I need. I have no clue however what to do with this folder.

    question is : how do I get my ffmpeg version to the xuggle compatible ffmpeg version ?

  • avcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.

    26 octobre 2013, par Ronald S. Bultje
    avcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.
    

    Don’t use word-size multiplications if size == 2, and if we’re using
    SIMD instructions (size >= 8), complete leftover 4byte sets using movd,
    not mov. Both of these changes lead to minor speedups.

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

    • [DH] libavcodec/x86/videodsp.asm