Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (81)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

Sur d’autres sites (5889)

  • How to build and use ffmpeg within android

    28 octobre 2016, par Shaggydev

    I am prototyping a fairly simple camera app to test out using MediaRecorder to create a custom camera activity with one snag, I want to set the aspect ratio of recorded videos to a 1x1. Through much research I have found that this is only possible by using a library like FFMPEG to crop each frame of the video to the size I desire.

    I have read many tutorials and articles on different ways to build FFMPEG into Android, but most of them are either outdated and use older versions of both the Android NDK and FFMPEG, or more recent ones just do not work when followed. I tried following the popular http://www.roman10.net/how-to-build-ffmpeg-for-android/‎ and a few other similar ones that all lead to an error about a missing pkg-config file because FFMPEG is generally meant to be installed on linux or another OS apparently. I found some information about building FFMPEG in android by using a make-standalone-toolchain.sh file here http://software.intel.com/en-us/android/blogs/2013/12/06/building-ffmpeg-for-android-on-x86 and can’t make heads or tails as to how to go about using this method.

    This now leads into my question : What is the best/proven way currently to build and use FFMPEG within android applications ? If the standalone toolchain method is the way to go, is there any material better than the one listed that is easier to follow ? I would even be open to a reliable template application with the FFMPEG Libraries ready to go (if this is possible) ; although, I would much rather know how to build this into android for future use.

    Thank you in advance for any advice or suggestions on this issue.

  • How to add app logo on video in android

    12 juillet 2017, par hasan_y_shaikh

    I have a video stored in my internal storage. I want to add the app logo to the video and play it in my android app.

    I have googled a bit and got the following results,

    https://github.com/WritingMinds/ffmpeg-android-java

    Adding watermark bitmap over video in android : 4.3’s MediaMuxer or ffmpeg

    But from these references i am not getting how to implement the feature which i want.
    So can any one please help me out in finding the solution for this.

  • How to use SDL libraries in the Android project built using ffmpeg

    25 mai 2012, par Harish

    I have built ffmpeg for Android on Ubuntu and used these libraries in an Android project through JNI. But using this I could only use the avcodec & avformat APIs and I read that I need to use SDL libs to display the video file.

    I have installed SDL (.configure, make & make install) and specified the .so file in my Android.mk file

    (LOCAL_LDLIBS := -llog -ljnigraphics -lz -lm $(LOCAL_PATH)/ffmpeg-0.8/android/armv7-a/libffmpeg.so $(LOCAL_PATH)/ffmpeg-0.8/android/armv7-a/libSDL.so)

    as I was getting "undefined reference to" errors.

    But now it complains that /jni/ffmpeg-0.8/android/armv7-a/libSDL.so : could not read symbols : File in wrong format.

    I am not sure if I haven't built the libraries correctly or I haven't specified the correct library in the JNI make file.