Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (64)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (10861)

  • FFMpeg command in android tutorial

    25 novembre 2013, par Azhagiri

    I want to write a android app that concats two videos

    i tried the following code

       InputStream in=null;
       OutputStream os=null;
       String appFileDirectory = getFilesDir().getPath();
       final String executableFilePath = appFileDirectory + "/ffmpeg";
       final String input ="concat:/mnt/sdcard/input1.mpg|/mnt/sdcrad/input2.mpg";
       File executable=new File(executableFilePath);
       try {
           in = getAssets().open("ffmpeg");
           os = new FileOutputStream(executable);
           int read = 0;
           byte[] bytes = new byte[1024];

           while ((read = in.read(bytes)) != -1) {
               os.write(bytes, 0, read);
           }


       } catch (IOException e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }finally {
           if (in != null) {
               try {
                   in.close();
               } catch (IOException e) {
                   e.printStackTrace();
               }
           }
           if (os != null) {
               try {
                   // outputStream.flush();
                   os.close();
               } catch (IOException e) {
                   e.printStackTrace();
               }
           }
       }
       executable.setExecutable(true);
       Button b = (Button)findViewById(R.id.button);
       b.setOnClickListener(new View.OnClickListener() {
           @Override
           public void onClick(View view) {
               try {
                   Process p = Runtime.getRuntime().exec(executableFilePath + "-i \""+ input + "\" -c copy /mnt/sdcrd/output.mpg");
               } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
               }
           }
       });

    }

    this code doesn't give any error or it is not crashing but nothing happens when i click the button. I created the ffmpeg build that is compatible with android. So can anyone help me out how to run the command from android java code.

  • Revision 15c839f563 : decode_tiles_mt : remove incorrect TODO all allocated workers are used, the fina

    11 juin 2015, par James Zern

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c



    decode_tiles_mt : remove incorrect TODO

    all allocated workers are used, the final one in the main thread.

    Change-Id : I04647d4fb2e01d6d404790e7899515289047f553

  • How to concatenate videos and adding background audio by using FFMPEG library

    9 mars 2017, par Furqan

    I am very new to FFMPEG library and i want some directions to implement a program that receives an list of videos (mp4 format) and audio file (mp3 ) and concatenate them with timestamps and remove its audio and add given audio and output a final video.

    Thanks