Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (80)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7144)

  • Android Studio with javaCv and FFMPEG

    19 janvier 2016, par Calvin Moss

    So I am using the new Android Studio and I am trying to get JavaCV installed in the most basic setup. I made a brand new project with nothing in it, imported (I think unsuccessfully) the JavaCV library and then I am running one of the samples given in the JavaCV repo and I am getting the following error.

    Process: com.example.calvintmoss.dejavid, PID: 1187
    java.lang.UnsatisfiedLinkError: Couldn't load jniopencv_core from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.example.calvintmoss.dejavid-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.example.calvintmoss.dejavid-1, /system/lib]]]: findLibrary returned null
           at java.lang.Runtime.loadLibrary(Runtime.java:358)
           at java.lang.System.loadLibrary(System.java:526)
           at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:535)
           at org.bytedeco.javacpp.Loader.load(Loader.java:410)
           at org.bytedeco.javacpp.Loader.load(Loader.java:353)
           at org.bytedeco.javacpp.opencv_core.<clinit>(opencv_core.java:10)
           at org.bytedeco.javacpp.helper.opencv_core$AbstractIplImage.create(opencv_core.java:909)
           at com.example.calvintmoss.dejavid.MainActivity.initRecorder(MainActivity.java:249)
           at com.example.calvintmoss.dejavid.MainActivity.onCreate(MainActivity.java:151)
           at android.app.Activity.performCreate(Activity.java:5231)
           at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2148)
           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233)
           at android.app.ActivityThread.access$800(ActivityThread.java:135)
           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
           at android.os.Handler.dispatchMessage(Handler.java:102)
           at android.os.Looper.loop(Looper.java:136)
           at android.app.ActivityThread.main(ActivityThread.java:5001)
           at java.lang.reflect.Method.invokeNative(Native Method)
           at java.lang.reflect.Method.invoke(Method.java:515)
           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
           at dalvik.system.NativeStart.main(Native Method)
    Caused by: java.lang.UnsatisfiedLinkError: Couldn't load opencv_core from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.example.calvintmoss.dejavid-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.example.calvintmoss.dejavid-1, /system/lib]]]: findLibrary returned null
           at java.lang.Runtime.loadLibrary(Runtime.java:358)
           at java.lang.System.loadLibrary(System.java:526)
           at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:535)
           at org.bytedeco.javacpp.Loader.load(Loader.java:401)
                at org.bytedeco.javacpp.Loader.load(Loader.java:353)
                at org.bytedeco.javacpp.opencv_core.<clinit>(opencv_core.java:10)
                at org.bytedeco.javacpp.helper.opencv_core$AbstractIplImage.create(opencv_core.java:909)
                at com.example.calvintmoss.dejavid.MainActivity.initRecorder(MainActivity.java:249)
                at com.example.calvintmoss.dejavid.MainActivity.onCreate(MainActivity.java:151)
                at android.app.Activity.performCreate(Activity.java:5231)
                at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
                at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2148)
                at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233)
                at android.app.ActivityThread.access$800(ActivityThread.java:135)
                at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
                at android.os.Handler.dispatchMessage(Handler.java:102)
                at android.os.Looper.loop(Looper.java:136)
                at android.app.ActivityThread.main(ActivityThread.java:5001)
                at java.lang.reflect.Method.invokeNative(Native Method)
                at java.lang.reflect.Method.invoke(Method.java:515)
                at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
                at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
                at dalvik.system.NativeStart.main(Native Method)
    </clinit></clinit>

    I have read several of the other top posts on the issue but I cannot figure out what is wrong. I downloaded the JavaCV through gradle, then I added the lib and lib/areabi folders. I imported ffmpeg.jar, javacpp.jar, javacv.jar and opencv.jar all to the lib folder. and I extracted all the .SO files from opencv-android-arm.jar and ffmpeg-android-arm.jar and put them in the lib/armeabi just like the instructions on the git repo. I cannot figure out what is going on. Anyone have any ideas ? Also my current setup is. Project->AppModule and then inside of that is where I have my lib and inside of lib i have the armeabi. Does anyone have any info on whats going on ?

  • How to Add Watermark like tic tok using ffmpeg in android studio

    3 février 2021, par arjunsinh

    I am trying To add Watermark Like Tic Tok using FFMPEG but it's Not working

    &#xA;&#xA;

            GeneralUtils.checkForPermissionsMAndAbove(MainActivity.this, true);&#xA;        LoadJNI vk = new LoadJNI();&#xA;        try {&#xA;&#xA;            //String complexCommand = "ffmpeg -y -i /storage/emulated/0/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /storage/emulated/0/out.mp4";&#xA;            /*String complexCommand = "ffmpeg -i /storage/emulated/0/in.mp4 -framerate 30000/1001 -loop 1 -i /storage/emulated/0/abcd.jpg -filter_complex\n" &#x2B;&#xA;                    "  \"[1:v] fade=out:st=30:d=1:alpha=1 [ov]; [0:v][ov] overlay=10:10 [v]\" -map \"[v]\"\n" &#x2B;&#xA;                    "  -map 0:a -c:v libx264 -c:a copy -shortest /storage/emulated/0/out.mp4";*/&#xA;            //String complexCommand = "ffmpeg -y -i /storage/emulated/0/in.mp4 -strict experimental -vf movie=/storage/emulated/0/abcd.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out] -s 320x240 -r 30 -b 15496k -vcodec mpeg4 -ab 48000 -ac 2 -ar 22050 /storage/emulated/0/out.mp4";&#xA;            String complexCommand = "ffmpeg -i /storage/emulated/0/in.mp4 -i /storage/emulated/0/abcd.jpg -filter_complex \\\n" &#x2B;&#xA;                    "\"overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2\" \\\n" &#x2B;&#xA;                    "-codec:a copy /storage/emulated/0/out.mp4";&#xA;&#xA;            String workFolder = getApplicationContext().getFilesDir().getAbsolutePath();&#xA;            //String[] complexCommand = {"ffmpeg","-i", "/sdcard/videokit/in.mp4"};&#xA;             vk.run(GeneralUtils.utilConvertToComplex(complexCommand) , workFolder , getApplicationContext());&#xA;&#xA;            Log.i("test", "ffmpeg4android finished successfully");&#xA;        } catch (Throwable e) {&#xA;            Log.e("test", "vk run exception.", e);&#xA;        }&#xA;

    &#xA;&#xA;

    but noting work for me

    &#xA;&#xA;

    as you can i have no knowledge about FFMPEG so if you give answere please write in brief.

    &#xA;&#xA;

    thank you.

    &#xA;

  • Connect ffmpeg to Visual Studio 2008

    29 avril 2014, par user2274492

    I try to connect ffmpeg to visual c++ like this, but when I type "./configure —toolchain=msvc" I have this error :

    c99wrap cl is unable to create an executable file.

    If c99wrap cl is a cross-compiler, use the —enable-cross-compile
    option. Only do this if you know what cross compiling means.

    C compiler test failed

    config.log :

    WARNING : pkg-config not found, library detection may fail. mktemp -u
    XXXXXX ./configure : line 728 : mktemp : command not found WARNING :
    Unknown C compiler C :\c99\c99wrap cl, unable to select optimal CFLAGS
    check_ld cc check_cc BEGIN /tmp/ffconf..ZHENYA.500.5884.c
    1 int main(void) return 0 ; END /tmp/ffconf..ZHENYA.500.5884.c C :\c99\c99wrap cl -c -o /tmp/ffconf..ZHENYA.500.5884.o
    /tmp/ffconf..ZHENYA.500.5884.c fatal error C1510 : Cannot load language
    resource clui.dll. C compiler test failed.

    What’s the problem ? Or just send me files that you got after compilation with this (I would not have asked, but I fix this two months) :

    ./configure —toolchain=msvc

    make

    make install


    log after changes :

      WARNING: pkg-config not found, library detection may fail.
    mktemp -u XXXXXX
    Uxplas
    check_ld cc
    check_cc
    BEGIN /tmp/ffconf.WcAVdgRZ.c
       1   int main(void){ return 0; }
    END /tmp/ffconf.WcAVdgRZ.c
    c99wrap cl -nologo -D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64 -c -Fo /tmp/ffconf.jQtxnkfv.o /tmp/ffconf.WcAVdgRZ.c
    ffconf.WcAVdgRZ.c
    ffconf.jQtxnkfv.o_converted.c
    c99wrap link -o /tmp/ffconf.sPZUPuMJ.exe /tmp/ffconf.jQtxnkfv.o
    link: invalid option -- o
    Try `link --help' for more information.
    C compiler test failed.

    log from second computer :

    WARNING: pkg-config not found, library detection may fail.
    mktemp -u XXXXXX
    ./configure: line 749: mktemp: command not found
    WARNING: Unknown C compiler c99wrap cl, unable to select optimal CFLAGS
    check_ld cc
    check_cc
    BEGIN /tmp/ffconf..zhenya.500.4036.c
    END /tmp/ffconf..zhenya.500.4036.c
    c99wrap cl -I/local/include -c -o /tmp/ffconf..zhenya.500.4036.o /tmp/ffconf..zhenya.500.4036.c
    ./configure: line 749: c99wrap: command not found
    C compiler test failed.

    Errors :

    1>ConsoleApplication1.obj : error LNK2028: ёё√ыър эр эхЁрчЁх°хээє■ ыхъёхьє (0A000039) "void __cdecl av_register_all(void)" (?av_register_all@@$$FYAXXZ) т ЇєэъЎшш "int __clrcall main(cli::array<class>^)" (?main@@$$HYMHP$01AP$AAVString@System@@@Z)
    1>ConsoleApplication1.obj : error LNK2019: ёё√ыър эр эхЁрчЁх°хээ√щ тэх°эшщ ёшьтюы "void __cdecl av_register_all(void)" (?av_register_all@@$$FYAXXZ) т ЇєэъЎшш "int __clrcall main(cli::array<class>^)" (?main@@$$HYMHP$01AP$AAVString@System@@@Z)
    1>c:\users\Zhenya\documents\visual studio 2012\Projects\ConsoleApplication1\Debug\ConsoleApplication1.exe : fatal error LNK1120: эхЁрчЁх°хээ√ї тэх°эшї ¤ыхьхэЄют: 2
    </class></class>