Recherche avancée

Médias (91)

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • doc/encoders : Fix application name

    2 janvier 2016, par Michael Niedermayer
    doc/encoders : Fix application name
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/encoders.texi
  • FFmpeg : use absolute path in "metadata=print:file="

    27 octobre 2022, par Axel Herrmann

    I'm using FFmpeg to extract frames of a video and therefore I want to print the metadata of the video to a text file first (to get the scene\ value of each frame).

    &#xA;

    This already works for me with something like :

    &#xA;

    ffmpeg -i input.mp4 -vf "select=&#x27;gte(scene,0)&#x27;,metadata=print:file=scenescores.txt" -an -f null -&#xA;

    &#xA;

    Because I'm using all this inside of a Java application I want to pass an absolute path (of an temp directory) to print:file= instead of the currently relative one which will write it to the root directory of the project.

    &#xA;

    But when I try to specify an absolute path like D:\scenescores.txt I get the following error :

    &#xA;

    [metadata @ 00000203282ff0c0] Unable to parse option value "scenescores.txt" as boolean&#xA;[metadata @ 00000203282ff0c0] Error setting option direct to value scenescores.txt.&#xA;[Parsed_metadata_1 @ 00000203269bdf00] Error applying options to the filter.&#xA;[AVFilterGraph @ 0000020328020840] Error initializing filter &#x27;metadata&#x27; with args &#x27;print:file=D:\scenescores.txt&#x27;&#xA;

    &#xA;

    Is there any way to achieve printing to an absolute path ? Am I missing some escape rules or something ?

    &#xA;

  • Working a mac application that needs to encode video [closed]

    9 février 2013, par Anand

    I am pretty new to xcode world. I am looking for a Tutorial to help me out to create a mac osx xcode project that encodes one format of video to other.
    For example the app will take and avi file and convert it to mp4.
    I see that ffmpeg and other libraries are available but none i am aware of how to use them in a xcode project.
    I am looking for a very very simple form of http://handbrake.fr/ mac application.

    A link to - simple step by step explanation of how to use a simple dylib file would do.