Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (5951)

  • 'imported-lib - NOTFOUND' in building ffmpeg 3.2 for android studio 2.2

    17 février 2017, par mdang

    I am trying to build and use ffmpeg for Android. My Andoid Studio version is 2.2.2 and ffmpeg is 3.2. Following Android documentation on how to import rebuild library, I think I got the setting right but kept on getting this error

    ninja: error: 'avcodec-NOTFOUND', needed by '../../../../build/intermediates/cmake/debug/obj/armeabi-v7a/...

    This is the setting

    add_library( avcodec SHARED IMPORTED )
    add_library( avdevice SHARED IMPORTED )
    add_library( avfilter SHARED IMPORTED )
    add_library( avformat SHARED IMPORTED )
    add_library( avutil SHARED IMPORTED )
    add_library( swscale SHARED IMPORTED )

    set_target_properties( avcodec
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libavcodec.so
                           )
    set_target_properties(  avdevice
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libavdevice.so
                           )
    set_target_properties( avfilter
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libavfilter.so
                           )
    set_target_properties( avformat
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libavformat.so
                           )
    set_target_properties( avutil
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libavutil.so
                           )
    set_target_properties( swscale
                           PROPERTIES FFMPEG_LIB_IMPORTED_LOCATION
                           libs/ffmpeg/${ANDROID_ABI}/lib/libswscale.so
                           )

    # Specifies a path to native header files.
    include_directories(
                       libs/ffmpeg/${ANDROID_ABI}/include
                       )

    target_link_libraries( # Specifies the target library.
                          native-lib

                          # Links the target library to the log library
                          # included in the NDK.
                          avcodec avdevice avfilter avformat avutil swscale
                          ${log-lib}
                           )

    If I specify the full library name, libavcodec.so..., the error would go away.

    target_link_libraries( # Specifies the target library.
                          native-lib

                          # Links the target library to the log library
                          # included in the NDK.
                          libavcodec.so libavdevice.so libavfilter.so libavformat.so libavutil.so libswscale.so
                          ${log-lib}
                           )

    I wonder if anyone encountered similar issue or know why the compilation behaves this way.

  • Building FFMPEGINTEROP with Visual Studio 2017 ?

    25 septembre 2018, par Francois Gagnon

    I’m working on a project that requires a video player. I’ve been using the standard UWP MediaPlayerElement but it refuses to read many types of videos, including ASF and FLV and some older MPG.

    I’ve read that ffmpeginterop is more compatible with a variety of codecs. However building it is a finicky and all the instructions are designed for VS2015 and command prompt for ARM processor, which does not exist for VS2017. I can’t find an updated version of the instructions (Left a message on their GIT site as well... no answers).

    So my question is two-fold :

    1. Is there any way to download the missing/updated codecs to include them in my project that uses the standard UWP approach ?

    2. Is there an updated way/tutorial/instructions of building ffmpeginterop with VS2017 ?

    3. Is ffmpeginterop too old and I should not build using it going forward ?

    Thanks !

  • How to create video from images without ffmpeg in Android studio without ndk ?

    22 octobre 2015, par sabish

    I am tring to making video from set of images with javacv but it show error like

    10-22 06:25:47.401 32386-32386/com.example.android_developer.myapplication E/AndroidRuntime : Caused by : java.lang.UnsatisfiedLinkError : Couldn’t load avutil from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.example.android_developer.myapplication-16.apk,libraryPath=/data/app-lib/com.example.android_developer.myapplication-16] : findLibrary returned null

    I spend almost 2 weeks on this please someone give project example.