
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (86)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (14622)
-
FFMPEG : FFPLAY binary not getting generated on compilation
2 avril 2017, par ZaxI have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay
I use the following command to configure and make the package :
./configure --enable-ffplay
makeHere it shows that :
SDL support no
as one of the outputs. But i have sdl packages installed in my system.However, the packages created are :
ffmpeg
ffmpeg_g
ffserver
ffserver_g
ffprobe
ffprobe_gI have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.
I checked my config.log, it has the below lines :
ffplay='yes'
ffplay_deps='avcodec avformat swscale swresample sdl'
ffplay_select='rdft crop_filter'I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.
-
FFMPEG : FFPLAY binary not getting generated on compilation
22 juillet 2019, par ZaxI have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay
I use the following command to configure and make the package :
./configure --enable-ffplay
makeHere it shows that :
SDL support no
as one of the outputs. But i have sdl packages installed in my system.However, the packages created are :
ffmpeg
ffmpeg_g
ffserver
ffserver_g
ffprobe
ffprobe_gI have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.
I checked my config.log, it has the below lines :
ffplay='yes'
ffplay_deps='avcodec avformat swscale swresample sdl'
ffplay_select='rdft crop_filter'I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.
-
FFmpeg compilation warnings ATOMIC_VAR_INIT
2 août 2022, par YozWhile compiling ffmpeg (commit 1368b5a) with emscripten 3.1.17, there are two warnings, I would like the internet to help me better understand (I am not someone with deep c++ experience) :


fftools/ffmpeg.c:339:41: warning: macro 'ATOMIC_VAR_INIT' has been marked as deprecated [-Wdeprecated-pragma]
static atomic_int transcode_init_done = ATOMIC_VAR_INIT(0);
 ^
/home/XYZ/ffmpeg-wasm/modules/emsdk/upstream/lib/clang/15.0.0/include/stdatomic.h:50:41: note: macro marked 'deprecated' here
#pragma clang deprecated(ATOMIC_VAR_INIT)
 ^



I understand ATOMIC_VAR_INIT in this place is deprecated, but by which tool (emscripten, clang) ? And which party to be involved in the fix.


The other one is also interesting :


fftools/ffmpeg_filter.c:898:35: warning: floating-point comparison is always true; constant cannot be represented exactly in type 'float' [-Wliteral-range]
 if (audio_drift_threshold != 0.1)
 ~~~~~~~~~~~~~~~~~~~~~ ^ ~~~



The message and consequences are very clear. Whats not clear to me, is, if this is particular compiler issue, or code issue and which party to take care ?