Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (55)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les images

    15 mai 2013

Sur d’autres sites (9886)

  • Coding with FFMPEG in Android

    3 juillet 2013, par user916350

    I succesfully compiled ffmpeg for Android, but I don't know how I can programatically convert flv or mp4 files to mp3, but I need it. Can anybody help me with example or tutorial ? Thank you.

  • Android AudioConverter and FFMPEG error gradle initialization

    4 juin 2018, par Angelo

    I’m trying to use Android AudioConverter (https://github.com/adrielcafe/AndroidAudioConverter) to convert a .AAC file to a .WAV. The problem is, when I try to run my app, I get this error :

    Error:Execution failed for task ':app:transformNativeLibsWithMergeJniLibsForDebug'.
    > More than one file was found with OS independent path 'lib/armeabi-v7a/libARM_ARCH.so'

    Here is my gradle file :

    apply plugin: 'com.android.application'

    android {
       compileSdkVersion 25
       buildToolsVersion '26.0.2'
       defaultConfig {
           applicationId "com.example.a49164.teachmi"
           minSdkVersion 23
           targetSdkVersion 25
           versionCode 1
           versionName "1.0"
           testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
       }
       buildTypes {
           release {
               minifyEnabled false
               proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
           }
       }
    }

    repositories {
       maven {
           url "https://jitpack.io"
       }
       flatDir {
           dirs 'libs'
       }
    }

    dependencies {
       compile fileTree(dir: 'libs', include: ['*.jar'])
       androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
           exclude group: 'com.android.support', module: 'support-annotations'
       })
       compile 'com.android.support:appcompat-v7:25.4.0'
       compile 'com.android.support.constraint:constraint-layout:1.0.2'
       testCompile 'junit:junit:4.12'
       compile 'com.android.volley:volley:1.0.0'
       compile 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
       compile(name:'FFmpegAndroid', ext:'aar')
    }

    If I remove this line :

       compile(name:'FFmpegAndroid', ext:'aar')

    Then the app does not work as Android AudioConverter needs ffmpeg to work. What should I do ? Thanks.

  • FFmpegKit wav compression in android

    9 juin 2023, par bovietvidai

    I am using arthenica/ffmpeg-kit in android Min version.
I want to implement a command that convert and compress a wav file to mp3 using lamemp3 intergrated in that library
I need a command for it