Recherche avancée

Médias (91)

Autres articles (84)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • First Capturing thumbnail from a Video using php ?

    28 juillet 2012, par Ajay

    I have an upload functionality on my site. And i want the php script to take out a random frame from the uploaded video, and save it as an image. Is that possible ?please guide me how can i get first capture image in video upload in php

    Thanks for Advance.

  • How to load a video file(located in assets folder ) in NDK ?

    26 mars 2013, par user1059217

    I am executing ffmpeg by android ndk, I am able to run an sample, here [https://github.com/ccggaass/android-ffmpeg-sample].

    I want to put the video in android assets folder, so how to pass this file to the ffmpeg api :

    av_open_input_file(&pFormatCtx, "file :/sdcard/vid.3gp", NULL, 0, NULL) ;

    Does anyone know how to pass the file to av lib ?

  • Start/Stop Ffmpeg video capture

    2 novembre 2011, par Dasas

    I'm currently using ffmpeg for recording video from a webcam source.

    At the moment i use java to call for ffmpeg to execute.

    The code is pretty straightforward

    ffmpeg -f dshow -i video="Dualpix HD720p for Notebooks" -s cif -r 20 -f flv TEST.FLV
    Runtime.getRuntime().exec("rundll32 SHELL32.DLL,ShellExec_RunDLL " + cmd);

    and it works fine.

    The only real issue occour when when i need to stop the recording process.

    I know that i can press q or even ctrl+c in the CMD but i need to stop the process without keyboard input.

    That would be pretty easy to achive by killing the process but in this case ffmpeg do not finalize the video leaving me with a corrupt, need to fix, output.

    Is there any way to trigger the finalizing process "remotely".

    Thx,
    D.

    *******EDIT**********

    Thx for the prompt answer, i think you're referring to

    Process.getOutputStream()

    As for this case i have tried with this code :

    public Process doCommand(String cmd) throws Exception {

       rt = Runtime.getRuntime();
       Process proc = rt.exec(cmd);
       recOS= proc.getOutputStream();
       regcIS= proc.getInputStream();

       return proc;

    }

      receOS.write(("q/n".getBytes()));
      recOS.flush();

    I'm still getting an error, to be more specific, java.io.ioexception The pipe is being closed ...