
Recherche avancée
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (13260)
-
Revision c9a9905764 : Add cpu detection for Android x86 Change-Id : I3fe24001cda08d7322b630f65c5e3fad8
26 avril 2013, par changjun.yangChanged Paths :
Modify /vpx_ports/x86.h
Add cpu detection for Android x86Change-Id : I3fe24001cda08d7322b630f65c5e3fad881f8036
-
How to compile OpenCV 4.4 with FFmpeg for android ?
28 octobre 2020, par MidhunI'm trying to compile OpenCV-4.4 for android with FFmpeg support. I tried following this link. But the problem here is that the CMake scripts are entirely different. I searched on google a lot but could not find any link that resolves my issue. The problem that I'm facing is that when I run CMake script it does not find the FFmpeg libs that I have compiled. I think it is not even checking if the libs are available or not. I tried to modify the CMakeLists.txt in OpenCV but it did not resolve the issue. Is there any way to fix this ?


-
Unknown encoder 'libx264' in flutter android app
17 juillet 2023, par ololoI am trying to use libx264 via ffmpeg_kit_flutter with full-gpl options in my Flutter app. However, when I start the app on Android, I keep getting the error :


"Unknown encoder 'libx264'."


Here is my current setup :


In android/build.gradle file :


buildscript {
 ext {
 ffmpegKitPackage = "full-gpl" // Notice I specified the option here
 kotlin_version = '1.8.0'
 }

 repositories {
 google()
 mavenCentral()
 }
 // .....
}



In android/app/build.gradle file :


android {
 compileSdkVersion 33

 compileOptions {
 sourceCompatibility JavaVersion.VERSION_1_8
 targetCompatibility JavaVersion.VERSION_1_8
 }

 packagingOptions { 
 // I specified the libx264 in this packageOptions block
 pickFirst 'lib/x86_64/libx264.so'
 pickFirst 'lib/arm64-v8a/libx264.so'
 pickFirst 'lib/armeabi-v7a/libx264.so'
 pickFirst 'lib/x86/libx264.so'
 }
}



In pubspec.yaml file :


dependencies:
 ffmpeg_kit_flutter: ^5.1.0



What could be the issue causing the "Unknown encoder 'libx264'" error ? Any help would be appreciated. Thank you !