
Recherche avancée
Autres articles (107)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (16371)
-
how to compile ffmpeg with mingw-w64 toolchain in cygwin environment
6 décembre 2018, par Jinlxz LiuI want to compile ffmpeg project with mingw-w64 compiler in cygwin environment.
I took the following steps :-
installed cygwin and mingw-w64 package with the setup-x86_64.exe and
git clone the ffmpeg project from https://git.ffmpeg.org/ffmpeg.git. -
entered into ffmpeg folder, executed the folloing commands.
./configure —host-os=x86_64-w64-mingw32 —enable-shared —disable-static
make
I found the make command didn’t invoke the compiler from mingw-w64, instead it invoked the compiler from cygwin, I have tried the command "make CC=x86_64-w64-mingw32-gcc", but it failed with some errors about missing header files as follows :
fatal error: sys/ioctl.h: No such file or directory
I think these header files have been installed.
which command is correct ? direct invocation of command make or the command with CC option ?
I want to use the compiler from mingw-w64 to compile ffmpeg, how can I achieve my goal ? -
-
avcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped
6 juin 2018, par Jerome Borsboomavcodec/vc1 : add Simple and Main profile to vc1_put_signed_blocks_clamped
Simple and Main profile also need unsigned put_pixels_clamped. Add an argument
to choose between signed and unsigned put_pixels and change function name to
vc1_put_blocks_clamped.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>
-
avcodec/vc1 : fix overlap and loop filtering for Simple and Main profile
8 juin 2018, par Jerome Borsboomavcodec/vc1 : fix overlap and loop filtering for Simple and Main profile
Overlap filtering I and BI frames for Simple and Main profile is only
dependent on PQUANT. Restrict testing for CONDOVER and OVERFLAGS to
advanced profile. Change from mb_width to end_mb_x in ff_vc1_i_loop_filter
to avoid breaking the Microsoft Screen 2 decoder.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>