Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (92)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

Sur d’autres sites (6642)

  • how can I use the openCV FFMPEG video I/O rather than the DirectShow one in Windows ?

    2 mai 2012, par octi

    So I'm trying to write a video using the openCV videoWriter as such :

    writer=cv.CreateVideoWriter(path+"test_output.avi",-1,fps,(W,H),1)

    So instead of supplying the FOURCC I supplied -1 in order to see what codecs I have available.
    Result was Microsoft RLE, Microsoft Video 1, Intel YUV, and Uncompressed.

    The reason is that when configuring openCV using CMAKE for Visual Studio 10 x64, this is what I have in the video i/o :
    Video I/O : DirectShow

    Is there a way to switch this to FFMPEG ? I know the ffmpeg dll is present in \3dparty\ffmpeg.
    I looked for Cmake FFMPEG flags but found none whatsoever. The weird thing is in the CmakeLists.txt in the opencv root under the video section :

    if(UNIX AND NOT APPLE)
    <ffmpeg stuff="stuff">
    elseif(WIN32)
       status("  Video I/O:"        HAVE_VIDEOINPUT     THEN DirectShow ELSE NO)
    endif()
    </ffmpeg>

    So it seems to me that opencv automatically switched to DirectShow and gives no choice of using FFMpeg.
    Or rather can one upgrade Driectshow to support other formats such as Divx or h264 ?
    Any ideas ?

  • is that possible to serv hls and dash mpeg both at a time

    12 février 2020, par Rahul M

    actually i’m a kind a newbie to the Nginx RTMP server. I had setup my nginx.conf file to accept both hls and dash-mpeg. but the now problem is at a once I can able to serve either of the hls or dash-mpeg. so now my question is that possible to serve both hls and dash-mpeg at the same time for two different videos ? I’m streaming video from OBS Studio.
    here are my MPEG and hls code in nginx.conf file

    rtmp {
    server {
       listen 1935; # Listen on standard RTMP port
       chunk_size 4000;

       application show {
           live on;
           # Turn on HLS
           hls on;
           hls_path /nginx/hls/;
           hls_fragment 3;
           hls_playlist_length 60;
           deny play all;
       }
       application dash {
               live on;
               dash on;
               dash_path /nginx/dash;

       }
    }

    }

    thank you advance.

  • Android java.lang.UnsatisfiedLinkError - couldn't find "libffmpeg.so"

    9 août 2017, par Achin

    i have build this project with eclipse https://github.com/youtube/yt-watchme and it is running fine , but when i try to build this project in android studio i am error in my Ffmpeg class ,i have copy all the file from my running demo which i made in eclipse to my android studio project directory , i will post my directory structure and build.gradle , please anyone guide me ? please see the below

    Process: com.google.android.apps.watchme, PID: 6330
       java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.google.android.apps.watchme-2/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]] couldn't find "libffmpeg.so"
               at java.lang.Runtime.loadLibrary(Runtime.java:366)
               at java.lang.System.loadLibrary(System.java:988)
               at com.google.android.apps.watchme.Ffmpeg.<clinit>(Ffmpeg.java:22)
               at com.google.android.apps.watchme.VideoStreamingConnection.open(VideoStreamingConnection.java:71)
               at com.google.android.apps.watchme.StreamerService.startStreaming(StreamerService.java:73)
               at com.google.android.apps.watchme.StreamerActivity.startStreaming(StreamerActivity.java:161)
               at com.google.android.apps.watchme.StreamerActivity.access$200(StreamerActivity.java:39)
               at com.google.android.apps.watchme.StreamerActivity$1.onServiceConnected(StreamerActivity.java:55)
               at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1208)
               at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1225)
               at android.os.Handler.handleCallback(Handler.java:739)
               at android.os.Handler.dispatchMessage(Handler.java:95)
               at android.os.Looper.loop(Looper.java:135)
               at android.app.ActivityThread.main(ActivityThread.java:5343)
               at java.lang.reflect.Method.invoke(Native Method)
               at java.lang.reflect.Method.invoke(Method.java:372)
               at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:905)
               at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:700)
    </clinit>

    enter image description here

    and in JNI function

    enter image description here