
Recherche avancée
Autres articles (103)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (14709)
-
ffmpeg watermark without vhook ?
12 juin 2015, par felixgeSince the vhook subsystem has been removed from the latest version of FFMPEG, how can I add a watermark to a video ?
I need to be able to overlay a PNG with background transparency.
-
Undeclared error when compiling ffmpeg3.4.2 on my PC (win10 64bit)
2 avril 2018, par Colin0114I try to compile ffmpeg 3.4.2 ( source code was git clone from repository of the latest version) on my PC of win10 ( 64bit )
Here is my compiling steps :
(1) install MinGW, https://sourceforge.net/projects/mingw/files/latest/download?source=files
Installation location : c :/MinGW
I added ’call "location/vcvars64.bat" ’ in ’msys.bat’
(2) install yasm ( win64.exe ), http://yasm.tortall.net/Download.html
Copy it to folder ’c :/windows/system32’
(3) then ’git clone https://github.com/FFmpeg/FFmpeg.git’ in Git Bash
(4) cd to ffmpeg, run ’./configure —disable-static —enable-shared -arch=x86_64’It spit a WARNING : ’pkg-config not found, library detection may fail’
And I ignored it, and go on running ’make’, but failed ;ERROR messages in the following :
./compat/w32pthreads.h:122:9 : error : unknown type name ’INIT_ONCE’
typedef INIT_ONCE pthread_once_t ;
./compat/w32pthreads.h:131:5 : error : implicit declaration of function ’InitOnceComplete’
libavdevice/alldevices.c : At top level :
./compat/w32pthreads.h:123:27 : error : ’INIT_ONCE_STATIC_INIT’ undeclared here (not in a function) #define PTHREAD_ONCE_INIT INIT_ONCE_STATIC_INIT
^
./libavutil/thread.h:145:22 : note : in expansion of macro ’PTHREAD_ONCE_INIT’
#define AV_ONCE_INIT PTHREAD_ONCE_INIT
^
libavdevice/alldevices.c:92:37 : note : in expansion of macro ’AV_ONCE_INIT’
static AVOnce av_device_next_init = AV_ONCE_INIT ; -
ERROR : SvtAv1Enc not found using pkg-config
2 novembre 2023, par Dmitry MaksakovI am trying to compile FFmpeg with SVT-AV1 codec, following instructions from here : https://github.com/OpenVisualCloud/SVT-AV1/tree/master/ffmpeg_plugin



Everything goes well, but when I try to run



./configure --enable-libsvtav1




I am getting



ERROR: SvtAv1Enc not found using pkg-config

If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.




The content of the ffbuild/config.log : https://pastebin.com/euPriFAp



There is an exact issue on the github : https://github.com/OpenVisualCloud/SVT-AV1/issues/35, but is closed as solved.



I have tried both on my Mac and in the Docker container with Ubuntu 18.04, but getting the same result.



Could anyone please help, what am I doing wrong ?