
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (87)
-
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 (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12635)
-
FFMPEG can not load frei0r plugins via environment path on windows 10
23 janvier 2018, par sam rolfeThis works fine on windows 7 - however on windows 10 mo matter what I try FFMPEG can not load the .dll file.
In debug mode it shows me that it is reading the correct environment path - however it is unable to find the file on that path - its so strange.
Looking for frei0r effect in ’C :\freior/edgeglow.dll’
I have tried with all manner of folders, names, slashes, etc - it always returns
Could not find module ’edgeglow’
I am wondering of there is some sort of user permissions ? Something is blocking it.
-
tests/audiomatch : Add missing return code at the end of main()
19 décembre 2017, par Michael Niedermayer -
Undefined FFMPEG references in my shared library when linking main program
23 février 2016, par DannyI’ve built a shared library which references the
FFMPEG
libraries. I’ve having a tough time to link the final application. I’ve fiddled for hours with library order but no joy.g++ -o testVideoTranscode testVideoTranscode.o /usr/lib/libstdc++.so.6 -L../../../lib3p -lavutil -lswresample -lavcodec -L../../../lib -ldvsutils -ldvscfg -ldvstc -lstdc++ -lmch264dec -lfreeimage -lpthread
../../../lib/libdvstc.so: undefined reference to `sws_getContext(int, int, AVPixelFormat, int, int, AVPixelFormat, int, SwsFilter*, SwsFilter*, double const*)'
../../../lib/libdvstc.so: undefined reference to `av_frame_alloc()'
../../../lib/libdvstc.so: undefined reference to `avcodec_close(AVCodecContext*)'
etc etcFor example, one missing symbol,
av_frame_alloc()
, is correctly in theibavutil.so
library (albeit in a non-standard location) :nm -D ../../../lib3p/libavutil.so | grep av_frame_alloc
00021360 T av_frame_allocMy library,
libdvstc.so
, correctly shows the reference to the symbol and the file :nm -D --demangle ../../../lib/libdvstc.so | grep av_frame_alloc
U av_frame_alloc()
ldd ../../../lib/libdvstc.so
linux-gate.so.1 => (0xb77c3000)
libavutil.so.55 => /mnt/swdevel/DVStor/source_build/lib3p/libavutil.so.55 (0xb772f000)
libswresample.so.2 => /mnt/swdevel/DVStor/source_build/lib3p/libswresample.so.2 (0xb7714000)
libavcodec.so.57 => /mnt/swdevel/DVStor/source_build/lib3p/libavcodec.so.57 (0xb623f000)
libstdc++.so.5 => /usr/local/dvstor/lib/libstdc++.so.5 (0xb616f000)
libm.so.6 => /lib/libm.so.6 (0xb6144000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb6126000)
libc.so.6 => /lib/libc.so.6 (0xb5f8f000)
libpthread.so.0 => /lib/libpthread.so.0 (0xb5f74000)
librt.so.1 => /lib/librt.so.1 (0xb5f6b000)
libdl.so.2 => /lib/libdl.so.2 (0xb5f65000)
libz.so.1 => /lib/libz.so.1 (0xb5f51000)
/lib/ld-linux.so.2 (0x00871000)Its all there. I’m stuck...