
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (18)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (5532)
-
How to integrate and use FFmpeg library in iOS with Xcode ?
23 mars 2019, par Akshaykumar MaldhureI wanted to use FFMpeg library for video processing activities, from 2 days I m working on compiling and integrating this library with Xcode 8 and Swift. I tried following links but with no success. Can anyone please help me how to achieve this ?
FFMPEG integration on iphone/ ipad project
https://github.com/chrisballinger/FFmpeg-iOS
http://witcheryne.iteye.com/blog/1734706
How to Build FFMpeg as iOS Framework
-
What does "all-yes" mean in ffmpeg Makefile
22 septembre 2021, par FLTIn ffmpeg Makefile,


https://github.com/FFmpeg/FFmpeg/blob/master/Makefile#L37


https://github.com/FFmpeg/FFmpeg/blob/master/Makefile#L189


It defined phony targets "all" and "all-yes", but I can't find prerequisites and command of "all-yes" by searching whole ffmpeg directory. So can anyone help to explain what "all-yes" exactly means ?


-
FFMPEG version updating issue
30 septembre 2017, par Sumit MarwhaI am using ffmpeg library in one of my android project. I am using this library.
https://github.com/WritingMinds/ffmpeg-android-java
But it is using very old ffmpeg version. So I want to update ffmpeg version. I have used this library to compile ffmpeg version 3.3.3
https://github.com/WritingMinds/ffmpeg-android
now if i am running this command in terminal ffmpeg -version. I am getting the correct output as
ffmpeg version 3.3.3 Copyright (c) 2000-2017 the FFmpeg developersNow i want to update ffmpeg version in
https://github.com/WritingMinds/ffmpeg-android-java
this library so i changed assets file to my compile ffmpeg file. But if i run the app and check version i am getting this output
ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developersbuilt with gcc 4.9.xI dont know why ffmpeg version is not changing. I have run command ndk-build as well after entering in jni folder but still ffmpeg version is not changing.
Please suggest me any solution. Thanks in advance