Recherche avancée

Médias (91)

Autres articles (37)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6089)

  • Revision 94649bc0ef : set up a speed 1 slightly worse results for faster encodes Change-Id : Ic5b38fc

    16 avril 2013, par Jim Bankoski

    Changed Paths : Modify /vp9/encoder/vp9_rdopt.c set up a speed 1 slightly worse results for faster encodes Change-Id : Ic5b38fcde7a2e334c4724e125b558bcb97783af6

  • Revision b6ef0823c5 : set up a new speed 1 slightly worse results for faster encodes Change-Id : I25e

    19 avril 2013, par Jim Bankoski

    Changed Paths : Modify /vp9/encoder/vp9_rdopt.c set up a new speed 1 slightly worse results for faster encodes Change-Id : I25ea82a18ce20635dbcd328808c1d05ac1f58fd7

  • Passing FileInputStream and FileOutputStream to ffmpeg to transcode(using JAVE-Java Audio Video Encoding)

    17 février 2014, par Jagan S

    I am trying to transcode a *.mov file into a *.mp4 file using JAVE, which calls ffmpeg.
    Both input file and output file are in InputStream and OutputStream forms.
    That means I need to pass InputStream and OutputStream as -i and -y parematers for ffmpeg.
    How do I do that ?

       //Read a movfile.mov converted into a FileInputStream  
       InputStream fileInputStream = getFileInputStream();  
       OutputStream fileOutputStream = new FileOutputStrea(outputMP4File) //Output        
       Process p = Runtime.exec("ffmpeg -i - -y -");  
       InputStream pInStrm = p.getInputStream();  
       OutputStream pOutStrm = p.getOutputStream();  
       int vin = 0, vout = 0;  

       Thread read = new Thread() {  
            byte[] buff = new byte[4096];  
             void run() {  
               while ((vin=fileInputStream.read(buf))!=-1) {  
                    pOutStrm.write(buf, 0, vin);  
               }  
            }  
         }; read.start();

       Thread write = new Thread() {  
           byte[] buff = new byte[4096];  
           void run() {  
                while ((vout=pInStrm.read(buf))!=-1) {  
                    fileOutputStream.write(buf, 0, vout);  
               }  
            }  
         }; write.start();  

    But I keep getting "IOException : pipe is closed" error. Could somebody help me out ?
    Alternatively if there is any JAVA API that could do this transcoding(on Windows and RedHat Linux), that would be very helpful

    Thanks