
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (106)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (10466)
-
Android NDK : Aborting stop ?
19 mai 2022, par Sandeep TiwariI am working on ffmpeg for android. I have successfully compile ffmpeg-2.0.1 
 after that I make Android.mk file in my NDK's sources/ffmpeg-2.0.1/android/arm as



LOCAL_PATH:= $(call my-dir)

 include $(CLEAR_VARS)

 LOCAL_MODULE:= libavcodec

 LOCAL_SRC_FILES:= lib/libavcodec-55.so

 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include

 include $(PREBUILT_SHARED_LIBRARY)




After that make android project and in android project Android.mk file is as



LOCAL_PATH := $(call my-dir)

 include $(CLEAR_VARS)

 LOCAL_MODULE := tutorial01
 LOCAL_SRC_FILES := tutorial01.c
 LOCAL_LDLIBS := -llog -ljnigraphics -lz 
 LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil

 include $(BUILD_SHARED_LIBRARY)
 $(call import-module,ffmpeg-2.0.1/android/arm)




but showing a problem



*** Android NDK: Aborting . Stop.
 android-ffmpeg-tutorial01line 45, external location: 
 /home/tech/Documents/roman10/ndk/android-ndk-r9c/build/core/prebuilt-library.mk
 C/C++ Problem




My NDK is android-ndk-r9c,system is ubuntu-13.04,please anyone guide me.



thanks in advance.


-
Android NDK : Aborting stop ?
30 juillet 2014, par Sandeep TiwariI am working on ffmpeg for android. I have successfully compile ffmpeg-2.0.1
after that I make Android.mk file in my NDK’s sources/ffmpeg-2.0.1/android/arm asLOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:= libavcodec
LOCAL_SRC_FILES:= lib/libavcodec-55.so
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_SHARED_LIBRARY)After that make android project and in android project Android.mk file is as
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := tutorial01
LOCAL_SRC_FILES := tutorial01.c
LOCAL_LDLIBS := -llog -ljnigraphics -lz
LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil
include $(BUILD_SHARED_LIBRARY)
$(call import-module,ffmpeg-2.0.1/android/arm)but showing a problem
*** Android NDK: Aborting . Stop.
android-ffmpeg-tutorial01line 45, external location:
/home/tech/Documents/roman10/ndk/android-ndk-r9c/build/core/prebuilt-library.mk
C/C++ ProblemMy NDK is android-ndk-r9c,system is ubuntu-13.04,please anyone guide me.
thanks in advance.
-
ffmpeg : stop accessing private AVStream.codec_info_nb_frames
29 avril 2021, par James Almerffmpeg : stop accessing private AVStream.codec_info_nb_frames
Use AVSTREAM_EVENT_FLAG_NEW_PACKETS instead, which should provide the
same information in this case.
Finishes removing all uses of this field as started by 87f0c8280c.Signed-off-by : James Almer <jamrial@gmail.com>