Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (54)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6605)

  • Revision 525745b17a : Remove a redundant branching in tokenize_b The tokenize_b function is only call

    30 juillet 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_tokenize.c



    Remove a redundant branching in tokenize_b

    The tokenize_b function is only called when output flag is on. Hence
    removing the conditional branch on it therein.

    Change-Id : Ib709f47f23f39ca05a695faf86fa3377f11f2dd0

  • Working Directory : null Environment : null when trying to call compiled FFMPEG in android

    10 janvier 2013, par TharakaNirmana

    I have the compiled FFMPEG file. I try to combine an image and an audio clip to form a video clip. Function to combine those two are : ffmpeg -i /mnt/sdcard/KaraokeVideos/allmapeople.mp3 -i /mnt/sdcard/KaraokeVideos/Penguins.jpg /mnt/sdcard/KaraokeVideos/video_finale.mpg.

    I have used that in the code :

    public class MainActivity extends Activity {

       private Process process;
       String command, text;

       // load the library - name matches jni/Android.mk-jj
       //static {

           //System.loadLibrary("ffmpeg");
       //}



       @Override
       public void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.activity_main);
           try {
               Execute();
           } catch (IOException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
           }


       }

       private void Execute() throws IOException {
           // TODO Auto-generated method stub

           Process p = Runtime.getRuntime().exec("ffmpeg -i /mnt/sdcard/KaraokeVideos/allmapeople.mp3 -i /mnt/sdcard/KaraokeVideos/Penguins.jpg /mnt/sdcard/KaraokeVideos/video_finale.mpg");
           p.getInputStream();
       }

    But I get this exception in logcat :

    01-10 18:44:24.209: W/System.err(31790): java.io.IOException: Error running exec(). Command: [ffmpeg, -i, /mnt/sdcard/KaraokeVideos/allmapeople.mp3, -i, /mnt/sdcard/KaraokeVideos/Penguins.jpg, /mnt/sdcard/KaraokeVideos/video_finale.mpg] Working Directory: null Environment: null
    01-10 18:44:24.239: W/System.err(31790):    at java.lang.ProcessManager.exec(ProcessManager.java:211)
    01-10 18:44:24.239: W/System.err(31790):    at java.lang.Runtime.exec(Runtime.java:168)
    01-10 18:44:24.239: W/System.err(31790):    at java.lang.Runtime.exec(Runtime.java:241)
    01-10 18:44:24.249: W/System.err(31790):    at java.lang.Runtime.exec(Runtime.java:184)
    01-10 18:44:24.249: W/System.err(31790):    at com.mindtherobot.samples.ndkfoo.MainActivity.Execute(MainActivity.java:47)
    01-10 18:44:24.259: W/System.err(31790):    at com.mindtherobot.samples.ndkfoo.MainActivity.onCreate(MainActivity.java:35)
    01-10 18:44:24.259: W/System.err(31790):    at android.app.Activity.performCreate(Activity.java:4465)
    01-10 18:44:24.269: W/System.err(31790):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
    01-10 18:44:24.269: W/System.err(31790):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1919)
    01-10 18:44:24.269: W/System.err(31790):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1980)
    01-10 18:44:24.289: W/System.err(31790):    at android.app.ActivityThread.access$600(ActivityThread.java:122)
    01-10 18:44:24.289: W/System.err(31790):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1146)
    01-10 18:44:24.299: W/System.err(31790):    at android.os.Handler.dispatchMessage(Handler.java:99)
    01-10 18:44:24.309: W/System.err(31790):    at android.os.Looper.loop(Looper.java:137)
    01-10 18:44:24.309: W/System.err(31790):    at android.app.ActivityThread.main(ActivityThread.java:4340)
    01-10 18:44:24.319: W/System.err(31790):    at java.lang.reflect.Method.invokeNative(Native Method)
    01-10 18:44:24.319: W/System.err(31790):    at java.lang.reflect.Method.invoke(Method.java:511)
    01-10 18:44:24.329: W/System.err(31790):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
    01-10 18:44:24.339: W/System.err(31790):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
    01-10 18:44:24.339: W/System.err(31790):    at dalvik.system.NativeStart.main(Native Method)
    01-10 18:44:24.359: W/System.err(31790): Caused by: java.io.IOException: Permission denied
    01-10 18:44:24.359: W/System.err(31790):    at java.lang.ProcessManager.exec(Native Method)
    01-10 18:44:24.369: W/System.err(31790):    at java.lang.ProcessManager.exec(ProcessManager.java:209)
    01-10 18:44:24.379: W/System.err(31790):    ... 19 more
    01-10 18:44:24.699: D/gralloc_goldfish(31790): Emulator without GPU emulation detected.

    What is wrong here, any help would be great !

  • Reject the send API call if the given fileInput has not selected files. Fixes #2486.

    2 août 2013, par blueimp
    Reject the send API call if the given fileInput has not selected files. Fixes #2486.