
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (71)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...) -
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 (7713)
-
Why does linking different MSVC Run-Time Libraries crash in release mode ?
9 septembre 2014, par UmNyobeI am using ffmpeg and Qt to build a small demo app.
- FFmpeg is built with
/MT
(crossbuild or built with visual 2010) - Qt is always built with
/MD
- My little example is always built with
/MD
When the application
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
av_gcd (75, 25);
return a.exec();
}
//note : following is av_gcd source in ffmpeg libs:
int64_t av_gcd(int64_t a, int64_t b)
{
if (b)
return av_gcd(b, a % b);
else
return a;
}is executed in release mode it crashes because it doesn’t see
av_gcd
as executable memory. The error is :First-chance exception at 0x0000000300905a4d in mylittleexample.exe :
0xC0000005 : Access violation at location 0x0000000300905a4d.=======================================
VERIFIER STOP 0000000000000650 : pid 0x1B9C : Attempt to execute code in
non-executable memory (first chance).0000000300905A4D : Address being accessed.
0000000300905A4D : Code
performing invalid access.
00000000009FF770 : Exception record. Use
.exr to display it.
00000000009FF280 : Context record. Use .cxr to
display it.=======================================
The address
0x0000000300905a4d
doesnt change regardless of the function in the library (ffmpeg in this case), or the compiler used for the executable (vs2010, vs2012) or a different machine.If I use the FFmpeg built with
/MD
and it works as one would expect.- I observe that the executable doesnt load the library when the
library is compiled with/MT
. Why is that ? - Furthermore, If the library is compiled with
/MT
and debug
information is enabled when the application is linked (/DEBUG
param to the linker) then the library is loaded and everything
execute correctly. Why ?
- FFmpeg is built with
-
Consent Mode v2 : Everything You Need to Know
7 mai 2024, par Alex — Analytics Tips -
avcodec : add a subcharenc mode that disables UTF-8 check
24 mars 2018, par wm4avcodec : add a subcharenc mode that disables UTF-8 check
This is for applications which want to explicitly check for invalid
UTF-8 manually, and take actions that are better than dropping invalid
subtitles silently. (It's pretty much silent because sporadic avcodec
error messages are so common that you can't reasonably display them in a
prominent and meaningful way in a application GUI.)