Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (65)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9730)

  • Cmd - find some files and execute a command on that file

    31 mars 2019, par MrAlex

    In my case, i need to find all .flv files in my drive, transcode them with ffmpeg and then delete them but i don’t know how to run the command on each of them

  • FFMPEG Android binary cannot find file in storage

    1er novembre 2014, par user2491598

    I am trying to run ffmpeg command on my Android using the ffmpeg binary library, but I keep getting an error that says :

    ffmpeg - i /storage/emulated/0/video3.mp4 /storage/emulated/0/output.mp4: No such file or directory

    The STDOUT I get back from the ProcessBuilder is

    0-31 19:43:20.576: I/FFMPEG(13838): stdErr= ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
    10-31 19:43:20.576: I/FFMPEG(13838):   built on Nov 15 2013 00:50:10 with gcc 4.6 20120106 (prerelease)
    10-31 19:43:20.576: I/FFMPEG(13838):   configuration: --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --enable-small --prefix=/data/data/info.guardianproject.ffmpeg/app_opt --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk//toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk//platforms/android-3/arch-arm --extra-cflags='-I../x264 -mfloat-abi=softfp -mfpu=neon' --extra-ldflags=-L../x264 --enable-version3 --enable-gpl --disable-doc --enable-yasm --enable-decoders --enable-encoders --enable-muxers --enable-demuxers --enable-parsers --enable-protocols --enable-filters --enable-avresample --enable-libfreetype --disable-indevs --enable-indev=lavfi --disable-outdevs --enable-hwaccels --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib --enable-muxer=md5
    10-31 19:43:20.576: I/FFMPEG(13838):   libavutil      51. 54.100 / 51. 54.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavcodec     54. 23.100 / 54. 23.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavformat    54.  6.100 / 54.  6.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavdevice    54.  0.100 / 54.  0.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libavfilter     2. 77.100 /  2. 77.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libswscale      2.  1.100 /  2.  1.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libswresample   0. 15.100 /  0. 15.100
    10-31 19:43:20.576: I/FFMPEG(13838):   libpostproc    52.  0.100 / 52.  0.100
    10-31 19:43:20.576: I/FFMPEG(13838): ffmpeg - i /storage/emulated/0/video3.mp4 /storage/emulated/0/output.mp4: No such file or directory

    Please keep in mind that the video file do exist on my device in that exact directory and I also have read permissions in my AndroidManifest.xml

    Please help !!!!

  • OpenCV Cmake unable to find ffmpeg lib

    29 juillet 2016, par URMISH THAKKER

    I am trying to compile OpenCV with ffmpeg support for ARM Platform on a x86 host.

    I downloaded and compiled ffmpeg for arm platform (both static - FFMPEG_ARM_LIB and dynamic libs - FFMPEG_ARM_LIB_SO)

    When I run cmake in opencv, it gives the following -

    --   Video I/O:
    --     DC1394 1.x:                  NO
    --     DC1394 2.x:                  NO
    --     FFMPEG:                      **NO**
    --       codec:                     NO
    --       format:                    NO
    --       util:                      NO
    --       swscale:                   NO
    --       gentoo-style:              YES
    --     GStreamer:                   NO
    --     OpenNI:                      NO
    --     OpenNI PrimeSensor Modules:  NO
    --     PvAPI:                       NO
    --     GigEVisionSDK:               NO
    --     UniCap:                      NO
    --     UniCap ucil:                 NO
    --     V4L/V4L2:                    NO/YES
    --     XIMEA:                       NO
    --     Xine:                        NO

    I changed the following flags to point to the lib paths of both ffmpeg static and dynamic libs-

    1. LD_LIBRARY_PATH
    2. C_INCLUDE_PATH
    3. CPLUS_INCLUDE_PATH
    4. PKG_CONFIG_PATH
    5. PKG_CONFIG_LIBDIR
    6. PATH
    7. CMAKE_LIBRARY_PATH
    8. CMAKE_INCLUDE_PATH

    However, the opencv is still not able to recognize the ffmpeg libs.

    My FFMPEG compilation command was

    ./configure --enable-shared --disable-static\
    --cross-prefix=arm-linux-gnueabi- --arch=armv7a\
    --target-os=linux --prefix=<path>
    </path>

    What am I doing wrong here ?
    1. Am I compiling the ffmpeg with the wrong option ?
    2. Am I missing some element in CMake which would make it point to the compiled ffmpeg lib for ARM on my system ?