Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (20)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3855)

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

    


  • 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

    


  • avformat/oggdec : Fix metadata memleak on multiple headers

    6 mars 2018, par Michael Niedermayer
    avformat/oggdec : Fix metadata memleak on multiple headers
    

    Fixes : Chromium bug 800123
    Reported-by : Matt Wolenetz <wolenetz@google.com>
    Reviewed-by : Matt Wolenetz <wolenetz@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/oggdec.c