Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (71)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6443)

  • Revision d9fc451666 : Move subpixel variance function from common/ to encoder/. This seems to only be

    18 juin 2013, par Ronald S. Bultje

    Changed Paths :
     Delete /vp9/common/x86/vp9_subpel_variance_impl_sse2.asm


     Delete /vp9/common/x86/vp9_subpixel_variance_sse2.c


     Add /vp9/encoder/x86/vp9_subpel_variance_impl_sse2.asm
    (from /vp9/common/x86/vp9_subpel_variance_impl_sse2.asm
    :a2f33e2505adab7543447d9017f0def0a901a0de)
     Modify /vp9/vp9_common.mk


     Modify /vp9/vp9cx.mk



    Move subpixel variance function from common/ to encoder/.

    This seems to only be used in the encoder. Also remove an empty wrapper
    file that contained forward declarations for this function, but didn't
    actually define any actual functions.

    Change-Id : Ifc561eef7ebe374a7d03698055e51e105f6d614b

  • ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in console

    13 juin 2013, par finch986

    ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in console
    ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in console

    String exe = "chmod 777 /data/data/com.demo.videocomparedemo/ffmpeg"/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
    Process process = runtime.exec(exe,null,null);
    process.waitFor();
    process.destroy();

    String src="/mnt/sdcard/Swingpro/TEST8.mp4";
    String exe1 = "chmod 777 "+src/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
    Process process1 = runtime.exec(exe1,null,null);
    process1.waitFor();
    process1.destroy();

    File file = new File("/mnt/sdcard/Swingpro", "TEST9.mp4");
    boolean retVal = false;
    if(file.exists()){
       if(file.isDirectory()){
           retVal = file.delete();
       }
    }
    file.createNewFile();

    String src1="/mnt/sdcard/Swingpro/TEST9.mp4";
    String exe2 = "chmod 777 "+src1;
    Process process2 = runtime.exec(exe2,null,null);
    process2.waitFor();
    process2.destroy();


    File dir = new File("/mnt/sdcard/SwingPro");

    List<string> args = new ArrayList<string>();
    args.add ("/data/data/com.demo.videocomparedemo/ffmpeg"); // command name
    args.add ("-i "+src); // optional args added as separate list items
    args.add("-acodec copy ");
    args.add("-vf \"transpose=1\" "+src1);


    ProcessBuilder pb = new ProcessBuilder (args);
    Process p = pb.start();
    p.waitFor();
    </string></string>
  • ffmpeg guys help me out why is this not working no error last process is not getting executed

    13 juin 2013, par finch986
    String exe = "chmod 777 /data/data/com.demo.videocomparedemo/ffmpeg"/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
    Process process = runtime.exec(exe,null,null);
    process.waitFor();
    process.destroy();

    String src="/mnt/sdcard/Swingpro/TEST8.mp4";
    String exe1 = "chmod 777 "+src/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
    Process process1 = runtime.exec(exe1,null,null);
    process1.waitFor();
    process1.destroy();

    File file = new File("/mnt/sdcard/Swingpro", "TEST9.mp4");
    boolean retVal = false;
    if(file.exists()){
       if(file.isDirectory()){
           retVal = file.delete();
       }
    }
    file.createNewFile();

    String src1="/mnt/sdcard/Swingpro/TEST9.mp4";
    String exe2 = "chmod 777 "+src1;
    Process process2 = runtime.exec(exe2,null,null);
    process2.waitFor();
    process2.destroy();


    File dir = new File("/mnt/sdcard/SwingPro");

    List<string> args = new ArrayList<string>();
    args.add ("/data/data/com.demo.videocomparedemo/ffmpeg"); // command name
    args.add ("-i "+src); // optional args added as separate list items
    args.add("-acodec copy ");
    args.add("-vf \"transpose=1\" "+src1);


    ProcessBuilder pb = new ProcessBuilder (args);
    Process p = pb.start();
    p.waitFor();
    </string></string>