Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6946)

  • how to use ffmpeg library using android studio on ubuntu

    6 mars 2016, par ultimate

    I know there are lots of questions asked for compiling and using FFMPEG library with android studio, but i have not got the solution.

    I am able to compile FFMPEG library on ubuntu and have idea to use compiled library on eclipse. I don’t know the what would be the project structure with FFMPEG library. Can anyone suggest me how it can be configured on android studio with gradle ?

  • Opening and reading a media file in android using ffmpeg

    29 octobre 2013, par ssrp

    I am developing an android project which has to open and read a MVC video file and save the streams separately in another location. I have done the basic steps for building ffmpeg for android and calling a c function through JNI. I want to know where do I have to put media files for doing above operations to it calling a C function in the C source file where I have all the Native function's implementations.

  • How to keep compatibility when compiling ffmpeg with android ndk

    2 novembre 2015, par Fido Zhang

    I have successfully compiled ffmpeg as a static library for my project with android-platform 19 which specified in Application.xml as below :

    APP_PLATFORM := android-19

    I test my project on a device(4.4),it runs well. But it will crash on 4.0 devices.

    So I would like to changed the APP_PLATFORM to a lower version like :

    APP_PLATFORM := android-17

    But the ide comes out an error like this.

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'

    And when I changed it to a more lower version :

    APP_PLATFORM := android-8

    More errors occured :

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'
    libavutil/mem.c:94: error: undefined reference to 'posix_memalign'

    I know the log2 reference is undefined because of missing libm, but as far as I see Android will automatic link to libm when building.http://mobilepearls.com/labs/native-android-api/ndk/docs/STABLE-APIS.html

    So how can I keep compatibility when compiling ffmpeg in order to run my project well on lower version devices.