
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (80)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (14054)
-
Compile x264 with Thread Support for Android Platform
10 novembre 2013, par Stryker33I've been tryin' to compile x264 for Android with Thread Support...But with no success...
I've managed to compile the same without thread support...The configure command is as follows :
./configure --prefix=$PREFIX \
--enable-pic \
--host=arm-linux \
--disable-cli \
--cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
--sysroot=$PLATFORMwhere
PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86
and
PLATFORM=$NDK/platforms/android-14/arch-arm
I've also tried with and without the option
--enable-static
andextra-ldflags="-lpthread"
, but when attemptedmake
it ends with errors.Is there any way to accomplish the above said...?
-
Compile x264 with Thread Support for Android Platform
10 novembre 2013, par Stryker33I’ve been tryin’ to compile x264 for Android with Thread Support...But with no success...
I’ve managed to compile the same without thread support...The configure command is as follows :
./configure --prefix=$PREFIX \
--enable-pic \
--host=arm-linux \
--disable-cli \
--cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
--sysroot=$PLATFORMwhere
PREBUILT=$NDK/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86
and
PLATFORM=$NDK/platforms/android-14/arch-arm
I’ve also tried with and without the option
--enable-static
andextra-ldflags="-lpthread"
, but when attemptedmake
it ends with errors.Is there any way to accomplish the above said...?
-
Android SIGSEGV code1 vs code2
24 janvier 2014, par nmxprimeAs of i've seen,
SIGSEGV (code 2)
comes during memory access not own by the process, i.e., accessing a buffer of size 10 at 11th location. [Please correct if my observation is wrong]. WhatSIGSEGV (code 1)
means ??I have this during the execution of ffmpeg(with neon enabled).
avcodec_decode_video2(ctx, frame, &got_picture, avpkt);
if(got_picture) {
fprintf(stderr,"Got-Picture = %d",got_picture);
}So how to resolve this
code 1
Segment fault ? Any insight into this issue ??[i wish to better understand why it occurs, possibly in general]