
Recherche avancée
Autres articles (41)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (3942)
-
Android App Bundle build error : File 'root/lib/x86/ffmpeg' uses directory name 'lib'
7 septembre 2020, par Patel PinkalI 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
 }





-
A third-party library (FFMpeg) is spamming output
14 janvier 2015, par Maciej StachowskiI’m using otherwise brilliant AForge library in my console project to encode video. When I run the project from under Visual Studio (both in Debug and Release modes), it works fine. However, running it as a stand-alone application produces the following :
(the prompt being in the third line is an artifact of me using
Console.SetCursorPosition
extensively).As far as I can tell, there’s no way to configure ffmpeg from under AForge to avoid this error, and the resulting video files are fine anyway, so I’d like to simply shut it up.
It seems, however, that even setting
Console.SetError(StreamWriter.Null);
Console.SetOut(StreamWriter.Null);does nothing - my app is trying to write something in the first two lines (another oddity), but gets spammed out by ffmpeg output.
Can I do anything about it ?
-
avcodec/dcadec : fix error message suppression code
16 avril 2014, par Michael Niedermayer