Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (49)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (6010)

  • Android App Bundle build error : File 'root/lib/x86/ffmpeg' uses directory name 'lib'

    7 septembre 2020, par Patel Pinkal

    I have used FFmpeg Android in the project from this repo FFmpeg-Android-Java and implement only the FFmpegAndroid module in the project.

    


    FFmpeg library is working fine when we run directly from Android Studio or we make APK file (debug or Signed).

    


    But When I try to generate the app bundle from Android studio I get the below error.

    


    Execution failed for task ':app:packageReleaseBundle'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
  > File 'root/lib/x86/ffmpeg' uses reserved file or directory name 'lib'.


    


    


    Project Level build.gradle

    


    


     // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

// Different version declaration
ext {
    kotlin_version = '1.4.0'
    supportVersion = "28.0.0"
    retrofitVersion = "2.0.2"
    okhttp3Version = "3.2.0"
    smackVersion = "4.3.0"
    nav_version = "2.1.0-alpha02"
}

repositories {
    google()
    jcenter()
    maven { url "https://jitpack.io" }
    maven { url 'https://maven.fabric.io/public' }
    mavenCentral()
}
dependencies {
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.google.gms:google-services:4.3.3'
    classpath 'com.android.tools.build:gradle:4.0.1'
    classpath 'io.fabric.tools:gradle:1.28.1'
    classpath 'me.tatarka:gradle-retrolambda:3.3.1'
    classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-rc2'
    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
    classpath "com.github.dcendents:android-maven-gradle-plugin:2.0"
    classpath 'com.google.firebase:perf-plugin:1.3.1'
}
}

 allprojects {
     repositories {
         google()
         jcenter()
         maven { url "https://jitpack.io" }
         maven { url 'https://maven.fabric.io/public' }
         mavenCentral()
     }
 }

 task clean(type: Delete) {
     delete rootProject.buildDir
 }


    


    enter image description here
enter image description here

    


  • in bash/linux : How to create the file text for output completed converted from FFmpeg..?

    23 juillet 2023, par manuel

    i don't find in google, how to create file text for output completed from FFmpeg in batch ?

    


    example : i find 1000 files old video (.avi) but i want to know what is done completed output example ECHO $files > text.txt.. but i don't find in google or here STACKOVERFLOW..

    


    i use batch in file .sh, there are command FIND, FFMPEG

    


    fortmat4find='.avi'
format4output='mp4'
.....
.....
sh -c "find . -iname $format4find -exec ffmpeg -n -i {} {}-CONVERTED$format4output > text.txt \;";


    


    result nothing output to text.txt as completed converted..

    


    inside of text.txt will be result like this :

    


    ./folder1/folder2/AAA.avi-CONVERTED.mp4
./folder4/folder5/AAA.avi-CONVERTED.mp4
....
...


    


    i check in guide.. but nothing find information..

    


  • How to convert animated webp to gif in android / java ?

    21 avril 2022, par UHS

    I want to convert the animated webp files to gif file and looking for solution since couple of days but did not get any easy straight solution yet.

    


    I tried ffmpeg but it could not do the job and after looking for solution I found that webp decoder is not implemented in ffmpeg yet.
https://trac.ffmpeg.org/ticket/4907

    


    I also checked libwebp library by google and they also says animated webp is not supported. https://developers.google.com/speed/webp/docs/dwebp

    


    I tried demo of aspose this library also fail to convert animated webp to gif.
https://products.aspose.com/imaging/java/conversion/webp-to-gif/

    


    I think ImageMagick can convert animated webp to gif but do not know how to implement that in my project.
How can I avoid dropouts when using (imagemagick) `mogrify` to convert webp files to animated gif ?

    


    So is there any easy way to convert webp to gif