
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (14189)
-
FFmpeg-kit : Unknown encoder 'libx264' / 'mediacodec' and Gradle dependency issues in Android Studio
15 mai, par Izzet dönertaşI'm working on a video editor app in Android Studio using ffmpeg-kit. My goal is to export video segments with fade transitions and audio using FFmpeg.


This implementation line works fine :


implementation("com.arthenica:ffmpeg-kit-full:6.0-2")



What doesn't work (Encoding) :
When I try to export a video segment using :


-c:v libx264 -c:a aac



I get this error in the logs :


[vost#0:0 @ ...] Unknown encoder 'libx264'



After checking the build configuration, it turns out libx264 is not enabled in the current FFmpeg-kit build :


--disable-libx264 (or rather: --enable-libx264 is missing)



Tried replacing libx264 with mediacodec :
Then I tried using :


-c:v mediacodec -c:a aac



But again I got :


Unknown encoder 'mediacodec'



Apparently, mediacodec is supported for decoding, but not as an encoder in FFmpeg-kit.


Tried to compile my own FFmpeg binary :
I attempted building FFmpeg manually using the following flags :


--enable-libx264 --enable-gpl --enable-shared ...



My plan was to access it via JNI or ProcessBuilder.


But the process is extremely frustrating :


- 

- Missing file errors
- Configuration conflicts
- Dependency hell (especially on macOS/Linux NDK toolchains)








Tried other ffmpeg-kit variants :
I also tried switching to :


implementation 'com.arthenica:ffmpeg-kit-full-gpl:6.0'



and other variants like ffmpeg-kit-min-gpl, etc.
But in all of them I got the same Gradle error :


Caused by: org.gradle.api.internal.artifacts.ivyservice.TypedResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'.


My build.gradle setup (yes, mavenCentral + google are already included) :


pluginManagement {
 repositories {
 google()
 mavenCentral()
 }
}

dependencyResolutionManagement {
 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 repositories {
 google()
 mavenCentral()
 }
}




I also tried enabling offline mode, clearing cache, adding
jetpack.io
, nothing helped.

I asked
ChatGPT-4o, Gemini 2.5 Pro
. None could provide a working solution for this combination of :

- 

- Working implementation
- Proper video encoding (with libx264 or mediacodec)
- Without breaking Gradle dependency resolution








I just want one of the following :


- 

-
A working FFmpeg-kit implementation (that supports libx264) and doesn’t crash Gradle


-
A reliable guide or build.gradle snippet that lets me use GPL version (with libx264) without resolve errors


-
(Ideally) A prebuilt safe LGPL-compatible alternative that allows encoding and is Google Play compliant










Any help or suggestions would be highly appreciated.
Thanks in advance


-
Android FFmpegKit-Full dependencies missing
9 mai, par Adrián PrimoI've tried to compile the app on Android and now it won't run as it can't find these files. I knew the *FFmpegKit *project was going to remove its binaries so I downloaded the package locally but I totally forgot about Android's specific files.


Launching lib\main.dart on sdk gphone64 x86 64 in debug mode...
Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
 > Could not find com.arthenica:ffmpeg-kit-full:6.0-2.
 Searched in the following locations:
 - https://dl.google.com/dl/android/maven2/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
 - https://repo.maven.apache.org/maven2/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
 - https://jcenter.bintray.com/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
 - https://storage.googleapis.com/download.flutter.io/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
 Required by:
 project :app > project :ffmpeg_kit_flutter_full



I've tried to download the dependencies manually from the repository, but the owner has removed the files.


Does anybody have the required files for the ffmpegkit-full package ? I found in a forked repository with the https package installed locally, but I need the full package.


Dependency in Maven Repository




-
Extracting Frames form Video in Android [closed]
2 juillet 2024, par Muhammad BilalI want to extract frames from video and want to change the frames at that point where i extracted the frames.


I have scene apps like Video Status Maker(https://play.google.com/store/apps/details?id=com.krishna.videostatusmaker), Vidify (https://play.google.com/store/apps/details?id=com.beautifullyrical.videomaker). These apps are using template videos. In my view there is a json file behind the video which exactly tells where the frames should be replaced in the video. I checked out the FFmpeg. It is giving me the frames but as i said there must be file which tells where the frames should be replaced. If anyone Knows how this can be done then please guide me. Thanks