Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (79)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8817)

  • Configuring ffmpeg as an rtmp server

    31 mai 2015, par Simon Dainty

    I’ve struggled for the past couple of days on this, without success, and I’d really like to get something working sooner than later - so I’d appreciate any feedback I can get.

    Anyway, I want to configure ffmpeg as an rtmp server that I can stream to (from anything that supports rtmp publishing - though, for experimentation, I’ll be using Open Broadcast Software). Right now I’ll just be happy to dump whatever is live streamed to a file, but in future I’ll be doing something more creative with it.

    So, with that in mind, could some kind soul please furnish me with an example commandline for ffmpeg that will accomodate me ?

    Thanks !

  • Windows 10 server ffmpeg configuration

    10 octobre 2019, par Aakash

    FF-MPEG Run-time execution in java not running in windows 10 server.I Have test with my system its working perfectly but in windows 10 server not works.i have also gives the environment variable path in windows 10 but problem is still. my code is following

    I Have try all the possible ways to running ff-mpeg command in run-time java environment but error still continues in windows 10 server

    String cmd = "ffmpeg -i " + source + " -ar 16000 -ac 1 " + pathwav + wavFileName + ".wav" ;

           System.out.println("cmd=> "+cmd);
           Process p = Runtime.getRuntime().exec(cmd);
           p.waitFor();
           System.out.println("Exit value: " + p.exitValue());
           if(p.exitValue()==0)
           {
               System.out.println(wavFileName + " is Created");
               String path = pathwav + wavFileName + ".wav";
               return path;
           }

    I Expect Wav File is creates in given path but it not created due to not execution of ffmpeg command

  • which port ffmpeg is using for streaming to a rtmp(or rtmps) server running in a cloud location

    12 janvier 2023, par elsa

    I am working with ffmpeg and rtmp camera streaming in a constrained environment.
I have rtmp server running on a cloud (say eg. 11.23.123.13 in port 1935 for rtmp & 4936 for rtmps).
However is there any port on sending end , i should request team to open to avoid blocking the stream sending from device end to rtmp server end(camera streaming end). Only port 443 is open in device where camera connected and ffmpeg commands are running.

    


    It would be helpful if somebody give insights on how network is connecting from ffmpeg encoder to rtmp server

    


      

    1. Getting the details how network is connecting from ffmpeg encoder to rtmp server ?
    2. 


    3. Which ports to be open in device end(where camera connecting) to start ffmpeg streaming to rtmp server running on cloud ?
    4.