Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (27)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • 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 (7447)

  • How to build ffmpeg executable binary for Android ?

    30 septembre 2022, par Uni

    I'm struggling how to build an executable binary of ffmpeg for Android command. I need to extract audio from video files such as mp4.

    


    I followed a tutorial here to build ffmpeg binary : http://www.roman10.net/how-to-build-ffmpeg-for-android/

    


    I dont need *.so file to use in NDK but only an executable binary.

    


    I tried to enable : --enable-ffmpeg in shell script build. It yielded a ffmpeg file too. Especially, the file size is small with around 2M. However, I am unable to use it in android execution as following :

    


    p = Runtime.getRuntime().exec("/data/data/example/ffmpeg -i /sdcard/test.mp4  -vn -acodec copy /sdcard/test.aac");


    


    The above executed very quickly and of course it didn't give any result.

    


    I continued searching and found an example here : https://github.com/guardianproject/android-ffmpeg-java

    


    The ffmpeg binary in the project is nice, I can run some command with desired output. However, some conversions to mp3 format gets failed because probably it lacked libmp3lame when building. Specially, ffmpeg is heavier than mine quite much, it is about 15M. I don't know how they build the binayr.

    


    I'm looking for is a proper guide which I can build with arbitrary options such as libmp3lame, libshine. I get stuck at m4a to mp3 conversion.

    


  • How to build ffmpeg executable binary for Android ?

    22 février 2016, par Én Xinh Lung Linh

    I’m struggling how to build an executable binary of ffmpeg for Android command.
    I am very new to ffmpeg which I need to extract audio from video files such as mp4.

    I followed a tutorial here to build ffmpeg binary : http://www.roman10.net/how-to-build-ffmpeg-for-android/

    I dont need *.so file to use in NDK but only an executable binary.

    I tried to enable : --enable-ffmpeg in shell script build. It yielded a ffmpeg file too. Especially, the file size is small with around 2M. However, I am unable to use it in android execution as following :

    p = Runtime.getRuntime().exec("/data/data/example/ffmpeg -i /sdcard/test.mp4  -vn -acodec copy /sdcard/test.aac");

    The above executed very quickly and of course it didn’t give any result.

    I continued searching and found an example here : https://github.com/guardianproject/android-ffmpeg-java

    The ffmpeg binary in the project is nice, I can run some command with desired output. However, some conversions to mp3 format gets failed because probably it lacked libmp3lame when building. Specially, ffmpeg is heavier than mine quite much, it is about 15M. I don’t know how they build the binayr.

    I’m looking for is a proper guide which I can build with arbitrary options such as libmp3lame, libshine. I get stuck at m4a to mp3 conversion.

    Everybody who has experience in ffmpeg, please guide me. Thank you !

  • Need support to build FFMpeg for Android DJI SDK

    23 octobre 2018, par ssenthil

    I tried to use DJI SDK for android for that it depends on ffmpeg (libffmpeg.so).
    So I tried to pull this code from github(https://github.com/dji-sdk/FFmpeg) and tried to build like it said in READme but here I for few queries...

    1) I set the NDK path

    2) I want to do ffmpeg build so I did modification to build_android.sh to do only build_ffmpeg only

    3) Got error saying cd ffmpeg-2.5.3 not found

    What is proper step to generate libffmpeg.so ?