Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (32)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (5546)

  • Android HLS : Any way to edit the m3u8 file so that I know which segment is currently streaming/playing in my player using HLS

    1er août 2014, par hclee

    I am now working on a VOD project using HLS.

    I use the VideoViewBuffer in VitamioDemo to stream my video that is stored in my local server.
    The Vitamio library is awesome that I am able to stream the video, getting the bit rate, buffering percentage and some metadata.

    We use ffmpeg to convert the video into m3u8 and the corresponding ts files.
    But now our team want to know which segment (which ts file) of the video the HLS is currently streaming.

    That’s a very important part in our project but we get stuck in this point.

    I tried to use the MediaMetadata in Vitamio but only the Duration of the video is found.
    I am wondering if we can add some metadata in the m3u8 file so that we can retrieve the name of the current segment during streaming.
    eg :
    The original m3u8 is like this :
    #EXTINF:10.500000,
    stream00000.ts

    Is it possible for me to change it as follows :
    #EXTINF:10.500000, name of segment
    stream00000.ts

    But all I can get using MediaMetaDataRetriever is null except for the duration.

    It seems that no body have done this before so I can’t find any very useful information about this.

    Do anybody how to implement this ?
    Or should I use some packet sniffer to monitor the network traffic by myself ?
    Or Would MediaScanner be helpful ?
    Or I need to use code in android.os ?

    Thanks in advance !

  • Is there a way to control ffplay audio volume from command line and from key commands on Mac OSX ?

    20 avril 2023, par smartblonde

    We want to use ffplay to monitor live RTMP feeds. We have a script to open an instance of ffplay for each feed. We would like to control the initial volume of the video to be around 30 out of 100. We would also like to be able to raise or lower the volume via key commands during the stream. We are referring to this doc : http://ffmpeg.org/ffplay.html

    



    We've tried the main option -volume 30, to try and start the volume at 30/100. FFplay says unrecognized option when it sees -volume on the command line.

    



    Also, we've tried using 9 and 0 to lower or raise the volume once the player is up and playing the live RTMP feed. These key commands seem to have no effect on the player's volume.

    



    Are there other shell parameters, and other key commands, that are known to work on all builds/OS's for ffplay ? If not, why change these basic functions from release and O/S ato other release ? In any case what works on MacOSX ? Thank you !

    


  • FFmpeg exit value = 4

    13 mai 2013, par Yuliya Tarasenko

    I try to run ffmpeg command on android devices. On some of them the code below works excellent and the video is created. But on some(e.g. motorola xoom) the exit value is 4. And while debugging on samsung galaxy s 2.3.3 it frozes up on process.waitFor() ;
    Could anyone help me please ? I can't understand what is wrong.

    public void execFfmpeg(){
       try {
           File resultFile = new File(mContext.getFilesDir() + "/ffmpeg");
           String[] command = null;
           command = new String[] {
               resultFile.getAbsolutePath(),
               "-shortest",
               "-i",
               audioPath,
               "-loop",
               "1",
               "-i",
               imagePath, "-acodec", "ac3", "-ab", "128k", "-vcodec",
               "mpeg4", videoFileName };


           if(command != null){
               Process process = Runtime.getRuntime().exec(command);
               process.waitFor();
               dumpStream(process.getInputStream());
               dumpStream(process.getErrorStream());
               mLogger.error("" + process.exitValue());

               if(process.exitValue() == 0){
               }
               }
           }
       } catch (IOException e) {
           e.printStackTrace();
       } catch (InterruptedException e) {
           e.printStackTrace();
       }
    }