
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (71)
-
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 ;
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (10786)
-
exception on ffmpeg dll from a c++ visual studio 2015 project
1er juillet 2017, par user1019140I want to use ffmpeg library in a Visual Studio project.
I want to build an app for WIN32, so I downloaded :C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-shared.zip
C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-dev.zipI copied the dlls from the shared zip to the same directory as my generated exe file. And I unzipped the dev zip into a directory of a different project of the same solution called MEDIA_IO.
Then in the project properties , I added "additional include directories" :
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\include
and under the linker, I added "Link library dependencies" :
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib
and "Additional dependencies" :
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swscale.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avutil.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avcodec.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avformat.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avfilter.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\postproc.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swresample.lib
..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avdevice.libI include the headers using :
extern "C"
{
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libavutil></libavutil>imgutils.h>
#include <libavutil></libavutil>samplefmt.h>
#include <libswscale></libswscale>swscale.h>
#include <libavutil></libavutil>avstring.h>
#include <libavutil></libavutil>intreadwrite.h>
}The app compiles fine, but when running it, I’m getting exceptions on many different ffmpeg functions.
For examples, when running :
SwsContext * ctx = sws_getContext(560, 320, AV_PIX_FMT_YUV420P, 560,320, AV_PIX_FMT_RGB24, 0, NULL, NULL, NULL);
I get exception :
Exception thrown at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).
Unhandled exception at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).It does not tell what are status codes 0xC0000006 and 0xC0000008.
I dug a lot and could not find the source of the problem. -
configure : instruct MSVC 2015 to properly process UTF-8 string literals
3 février 2017, par Hendrik Leppkesconfigure : instruct MSVC 2015 to properly process UTF-8 string literals
Without the /UTF-8 switch, the MSVC compiler treats all files as in the
system codepage, instead of in UTF-8, which causes UTF-8 string literals
to be interpreted wrong.This switch was only introduced in VS2015 Update 2, and any earlier
versions do not have an equivalent solution.Fixes fate-sub-scc on MSVC 2015+
-
configure : disable the new optimizer in Visual Studio 2015 Update 3
28 juin 2016, par Hendrik Leppkesconfigure : disable the new optimizer in Visual Studio 2015 Update 3
Visual Studio 2015 Update 3 introduced a new SSA optimizer, however
it unfortunately causes miscompilations. Until it is fixed, the new
optimizations are disabled and should be re-checked on subsequent
compiler releases.Fixes recent FATE failure of fate-lavf-pam on VS2015.