
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 (37)
-
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 -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (5989)
-
How rust links ffmpeg static library ?
11 juillet 2022, par JeycriI'm using rust to link ffmpeg and compile wasm, but I encounter a compilation problem, and the error is as follows.Because the error is too long, I only intercept the key part.


note: /usr/bin/ld: /usr/local/ffmpeg4.3.3/lib/libavfilter.a: error adding symbols: file format not recognized
collect2: error: ld returned 1 exit status



The problem lies in the link mode of ffmpeg library, because I use static library, but I don't know how to set it to compile for static library.This is my .toml


[package]
name = "r_linkc"
version = "0.1.0"
edition = "2021"
[dependencies]
libc = "0.2"
ffmpeg-sys = { version = "4.3.1", features = ["default", "static"] }
[target.'cfg(target_os="linux")']
rustflags=["-C", "link-args=-static"]



This is a screenshot of my library.



What is the right way to link ffmpeg static libraries ?


-
FFMPEG Android Library Increase Size
13 avril 2022, par tech_androidI'm using ffmpeg library in my Project. Problem is App apk size is too big. Anyone know how to reduce apk size ?
Any help, suggestion or links would be highly appreciated. Thank you.


-
Android AAC Cutter Library without FFmpeg [closed]
13 avril 2021, par PascalI have a simple question. I want to cut a bit of a AAC File on Android. I can't use FFmpeg because I already use it to decode my audio files. So if I use any library that contains FFmpeg, it resolves in a conflict.


I already tried to encode AAC myself with FFmpeg (native) but it also didn't worked. Even though I used the official transcode example (https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/transcode_aac.c).


I searched the web but couldn't get a working library, that does not use FFmpeg.