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)

  • Steps to develop Live video chat application for iOS. Please guide [closed]

    3 avril 2013, par Er Amit Sachdeva

    I want to develop a application which enables to user for live video chat between two devices which are connected under LAN. Please guide me a right path to go for learning/implementation of that.

  • 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;