Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (52)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

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

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9136)

  • How to display a progress bar while the Android ffmpeg command is executing in android studio ?

    23 juillet 2017, par Hemanth Kumar

    I’m having troubles displaying a progress bar that shows kb/s or a percentage like 1-100% when the ffmpeg command is executing.

    Here I’m doing video trimming using the ffmpeg command.
    I’m developing code in Android Studio.
    I want to display a progress bar to the user when the process is going on but I
    can’t do it.

    Please tell me how to extract process information from the ffmpeg command and display it using a progress bar.

  • how to build ffmpeg 3.2 for android studio 2.2

    1er novembre 2016, 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
                           lib/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
                           lib/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.

  • How to build and compile FFmpeg codes in MS Visual Studio and work with the code ? Is it possible to edit FFmpeg codes ?

    13 octobre 2020, par Sasank

    I work in HM, HTM, VTM and X265 encoders. I can edit the codes of these encoders in visual studio and build it to get modified executables. I actually want to implement the algorithms of my own in these encoders to know how my algorithm impacts the coding efficiency of these encoders. I also want to edit the code of FFmpeg. How to build and compile FFmpeg codes in MS Visual Studio and work with the code ? Is it possible to edit FFmpeg ?