Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (35)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • avcodec/vorbisenc : Use fdsp for applying windows

    30 mai 2017, par Tyler Jones
    avcodec/vorbisenc : Use fdsp for applying windows
    

    Using fdsp improves readability and allows using architecture-specific
    optimizations.

    Signed-off-by : Tyler Jones <tdjones879@gmail.com>

    • [DH] libavcodec/vorbisenc.c
  • Run Windows command through Java Tomcat Server

    6 mai 2016, par chellapandi k

    I am using FFMPEG library files on my windows machine to convert media files from one format to another, so i try to call FFMPEG windows command through java. It works by calling Process p = Runtime.getRuntime().exec("ffmpeg -i " + xxx.mp4 + " " + yyy.wav + ""); in normal java program. but when i launch my project into TOMCAT server it throws exception like java.io.IOException: cannot run program : "ffmpeg" CreateProcess error=2, the system cannot find the file specified . I have attached my code below..

    String sVideo = "C:\\Users\\Administrator\\Desktop\\voice.amr";
       String dVideo2 = "C:\\Users\\Administrator\\Desktop\\sVideo.wav";
       try {
           Process p = Runtime.getRuntime().exec("ffmpeg -i " + sVideo + " " + dVideo2 + "");          
       } catch (Exception e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }

    above code works, when runs this class file separately but when i use this code in my project, it throws exception when run my project in TOMCAT Server. Thanks in advance.

  • Compiling ffmpeg on android under windows platform [on hold]

    14 janvier 2014, par Mrityunjoy Mukherjee

    I have the following links.

    http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/comment-page-3/#comments

    I have used cygwin to compile ffmpeg on android under windows platform. After compilation within /android/arm/lib folder .dll.a files are created. How can I get .so files within libs folder ????