Recherche avancée

Médias (91)

Autres articles (57)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5193)

  • Running FFMPEG and FFserver from Glassfish Java Servlet

    6 mai 2015, par Ivan Ling

    I’m planning to design a web interface to control my FFserver remotely. The question is, is it possible to start/stop the FFserver running on my Linux server using a Servlet running on the same machine ?

    I’m using Glassfish server and Java EE 7 for my web application. Currently I managed to get my web app to obtain http streams (which are started manually in terminal with predefined config file) and play them on the web. However, now I want to find a way to stop the streams and start the streams on demand.

    Is it possible for me to run a Bash script via the servlet ? Or are there any better solutions which allows Servlets to run linux commands in the servlet ?

  • Why does FFmpeg encode by default ?

    2 décembre 2022, par Hashim Aziz

    By default the following unpresuming FFmpeg command :

    


    ffmpeg -i "input.mp4" "output.mkv"


    


    ...will lossily encode a file unless it has the -c copy flag added, which will then pass the video through without any encoding. I remember not realising this as a beginner to FFmpeg years ago and being surprised when I found out, and ever since then it's something I've wondered about but not got around to asking.

    


    The main justification for this behaviour that comes to mind for me is that encoding is a much more common operation, and it might be annoying to have to pass an extra -encode flag for most uses.

    


    Was this ever one of the reasons cited for this design decision ? Has the issue ever even been discussed in the FFmpeg mailing lists, or has it remained unquestioned since being written during the days of Fabrice Bellard ?

    


  • How to check for DLL/SO before calling JNA Native.loadLibrary to avoid UnsatisfiedLinkError

    4 septembre 2013, par user1305332

    I'm loading a native library (ffmpeg) using JNA but I need to check if the DLL/SO file exists before actually calling Native.loadLibrary(). FFMPEG may not always be installed in the system (it's a seperate download).

    Native.loadLibrary() throws an ERROR which you can not trap with a try {} catch {}.

    How do I check if the library (DLL or SO) exists before actually calling loadLibrary() ?
    Would I have to just parse the PATH environment variable and check myself ? I would have to check against Windows and Linux and ensure the correct 32/64bit .dll or .so is installed ???

    I wish loadLibrary just returned a null pointer or threw an exception, not an error (bad design).