Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (111)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (18173)

  • Fix path for jquery.ui.widget in AMD module

    3 juillet 2015, par palcu
    Fix path for jquery.ui.widget in AMD module
  • Fixed path jquery-ui/ui/widget.

    20 décembre 2016, par exabugs
    Fixed path jquery-ui/ui/widget.
  • ffmpeg Video concat demuxer txt path

    19 avril 2013, par Steven Mills

    I'm making use of the ffmpeg command line process, specifically the demuxer (see here).

    I'm attempting to run the equivelent of this :

    ffmpeg -f concat -i C:\Users\Username\AppData\Local\mylist.txt -c copy output.avi

    I've tried it and it works fine in the console, however I can't figure out a way to get this to work through code. I've checked the path is right, I've checked the txt file is named correctly etc.

    ffmpeg.StartInfo.Arguments = "-f concat -y -i " + @"C:\Users\Username\AppData\Local\Temp\mylist.txt" + " -c copy output.avi";
    ffmpeg.StartInfo.FileName = "ffmpeg.exe";

    For the path I've tried with/without the @ before the path, I've tried \ and / instead of \, I've tried using System.IO.Path methods, but none of it seems to work. It always returns an error saying "file not found", and through debugging I can see that ffmpeg.StartInfo.Arguments always ends up having \ between folders, so I'm guessing that might be the issue.

    Does anyone have a clue how I'd go about circumventing this particular issue ?