Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (28)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6612)

  • Can't invoke FFmpeg.getInstance in Android Java development [on hold]

    18 août 2019, par BoredDev

    I’m trying to use FFmpeg in Android Studio but i cant invoke some methods :

    1) FFmpeg ffmpeg = FFprobe.getInstance(context) ;

    Method getInstance don’t "exist"

    2) ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler()

    ExecuteBinaryResponseHandler don’t exist

    However i tried to execute ffmpeg.execute and everything works fine.

    To "install" FFmpeg i did what i found in https://github.com/bravobit/FFmpeg-Android
    For that i mean : i included dependencies in gradle

    dependencies {
       implementation 'nl.bravobit:android-ffmpeg:1.1.7'
    }

    And that’s it...

    Here is the code that FFmpeg works(but notice that i’m not invoking "execute" with FFmpeg object)

           // FFmpeg ffmpeg = FFmpeg.getInstance(MainActivity.this);
           // Line above returns Cant resolve method and can't build...

           Runnable mergemovie = new Runnable() {
               @Override
               public void run() {
                   String f1 = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES)+ "/Vid1.mp4";
                   String output = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES)+ "/out.mp4";
                   //so i use FFmpeg like below
                   FFmpeg.execute("-i " + f1 + " -q 5 " + output); // just reducing video quality
               }
           };
           Thread t = new Thread(mergemovie);
           t.start();

    I really need to getInstance and new ExecuteBinaryResponseHandler() working because i want to check if the commands given were successfull...

    Thanks guys for any help !

  • Best way to stream live video under webRTC development [on hold]

    5 avril 2016, par Ankit Dhanna

    I have implemented webrtc live video chat with multiple presentors (using licode ).
    However, I want to ask how can I broadcast this video stream so that multiple users who are not on webrtc can be served ?

    Where/Which server should I broadcast this stream to to get least lag time ?

  • ffprobe : add more safe casts in value_string()

    18 janvier 2012, par Stefano Sabatini

    ffprobe : add more safe casts in value_string()