
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (75)
-
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 (...) -
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 (...)
Sur d’autres sites (10108)
-
libvlc android build with mpeg 4 encoder and h264
6 juin 2013, par jacobI am building libvlc for Android and I enabled sout (
--enable-sout
) but when I try to add sout transcode option, I get this error :cannot find encoder MPEG-4 Video
*** Your Libav/FFmpeg installation is crippled. ***
*** Please check with your Libav/FFmpeg packager. ***
*** This is NOT a VLC media player issue. ***
Streaming / Transcoding failed
It seems your Libav/FFmpeg (libavcodec) installation lacks the following encoder:
MPEG-4 Video.How can I add mpeg4 encoder support ?
Another option is to add a h264 encoder but I don't know how to add that either.
-
libvlc android build with mpeg 4 encoder and h264
6 juin 2013, par jacobI am building libvlc for Android and I enabled sout (
--enable-sout
) but when I try to add sout transcode option, I get this error :cannot find encoder MPEG-4 Video
*** Your Libav/FFmpeg installation is crippled. ***
*** Please check with your Libav/FFmpeg packager. ***
*** This is NOT a VLC media player issue. ***
Streaming / Transcoding failed
It seems your Libav/FFmpeg (libavcodec) installation lacks the following encoder:
MPEG-4 Video.How can I add mpeg4 encoder support ?
Another option is to add a h264 encoder but I don't know how to add that either.
-
how to link ffmpeg libs with android system libs
7 juin 2013, par user718146I am using ffmepg to develope my own functionality for my android system,
I have gotten ffmpeg libs (libavutil.a and so on) by building ffmpeg project using android NDK
Static libs can be linked by declaring LOCAL_LDFLAGS += lib in Android.mk, however, my ffmpeg libs could not be linked for my project with android system compilation, a vast Error (undefined reference to 'av_xx' ) occurred during compilation process
I did another test of linking the ffmpeg libs in my project that is NDK compiled, the libs were linked without error
my own functionality im developing can only be compiled under android source code, how do i fix it, please help