
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (69)
-
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 -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (6800)
-
avformat/movenc : add support for Immersive Audio Model and Formats in ISOBMFF
15 février 2024, par James Almer -
FFmpeg java.lang.UnsatisfiedLinkError dlopen failed : library "libavutil.so" not found in Vivo model device
9 février 2024, par sejnFacing a lot of crashes in the Android Vivo devices with the above error. Can I restrict this to the Vivo models in Android.


I'm using the implementation 'com.arthenica:mobile-ffmpeg-full:4.4'


Fatal Exception: java.lang.UnsatisfiedLinkError dlopen failed: library "libavutil.so" not found

init {
 try{
 System.loadLibrary("avutil")
 System.loadLibrary("avcodec")
 System.loadLibrary("avformat")
 System.loadLibrary("swscale")
 System.loadLibrary("avfilter")
 }
 catch (e:Exception){
 Log.i("error","${e.message}")
 }
}



In app/build.gradle




ndk 
abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'




Note : If I migrate to the latest version ffmpeg-kit-full:6.0-2


Clarifications :


- 

- Shall I need to add this below in the code as well if I use the FFmpeg-kit
- If I did not need to use means, does it make any issues in the app ?.(i.e) if I removed
- Shall I need to add any additional loadlibrary in the init ?
- Is there any simple fix for the above error for Oppo alone without migrating ?
- Shall I need to add these architectures in ndk of my app ?














arm-v7a, arm-v7a-neon, arm64-v8a, x86 and x86_64 architectures




init {
 try{
 System.loadLibrary("avutil")
 System.loadLibrary("avcodec")
 System.loadLibrary("avformat")
 System.loadLibrary("swscale")
 System.loadLibrary("avfilter")
 }
 catch (e:Exception){
 Log.i("error","${e.message}")
 }
 }



-
Model the loss of video codec
10 janvier 2024, par MonacoI want to use a neural network to model the error loss after video encoding. The modeling process is as follows :


I use ffmpeg to encode and decode video frames. Since this process is not implemented using tensors in PyTorch and cannot compute gradients, I have to separately implement a neural network in PyTorch to enable gradient backpropagation. However, it turns out that the neural network cannot effectively learn the video encoding.


I want to know if there are currently any implementations of video encoders or decoders that support backpropagation of gradients. I don't necessarily need to update the parameters of the encoder/decoder, but I want it to support gradient backpropagation so that I can use it for various tasks related to deep learning.