
Recherche avancée
Autres articles (73)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (9888)
-
Undefined reference to av_log
12 novembre 2017, par Dana PrakosoI am cross-compiling FFMPEG source in Linux for Windows using i686-w64-mingw32 using this script :
../ffmpeg/configure --disable-ffmpeg --disable-ffprobe --disable-ffplay --disable-shared --enable-static --arch=x86 --target-os=mingw32 --cross-prefix=i686-w64-mingw32- --enable-cross-compile
And it generates all static library files with extension *.a inside "lib" folder. Then I try to link those libraries with my own source, with this script :
i686-w64-mingw32-gcc -m32 -c videoplayer.c -o videoplayer.o -w $(INCLUDEDIR) -Wl,--add-stdcall-alias
i686-w64-mingw32-gcc -static -m32 -o libvideoplayer.dll videoplayer.o -Wl,--out-implib,libvideoplayer_dll.lib -Wl,--add-stdcall-alias -L../../ffmpeg/lib -lavdevice -lavformat -lavcodec -lavutil -lwsock32 -lswresample ../../ffmpeg/lib/libWs2_32.libAnd I got this bunch of error messages :
../../ffmpeg/lib/libavformat.a(rtpproto.o): In function `rtp_resolve_host':
/home/dana/Sources/build-ffmpeg/src/libavformat/rtpproto.c:140: undefined reference to `_imp__getaddrinfo@16'
../../ffmpeg/lib/libavformat.a(rtpproto.o): In function `rtp_parse_addr_list':
/home/dana/Sources/build-ffmpeg/src/libavformat/rtpproto.c:282: undefined reference to `_imp__freeaddrinfo@4'
/home/dana/Sources/build-ffmpeg/src/libavformat/rtpproto.c:277: undefined reference to `_imp__freeaddrinfo@4'
../../ffmpeg/lib/libavformat.a(tcp.o): In function `tcp_open':
/home/dana/Sources/build-ffmpeg/src/libavformat/tcp.c:112: undefined reference to `_imp__getaddrinfo@16'
/home/dana/Sources/build-ffmpeg/src/libavformat/tcp.c:114: undefined reference to `_imp__getaddrinfo@16'
/home/dana/Sources/build-ffmpeg/src/libavformat/tcp.c:177: undefined reference to `_imp__freeaddrinfo@4'
/home/dana/Sources/build-ffmpeg/src/libavformat/tcp.c:192: undefined reference to `_imp__freeaddrinfo@4'How do I resolve this ? Do I miss something in my script ? Big thanks for someone replying.
-
ffmpeg : error using image2 demuxer
14 juin 2014, par mpromonetFrom the image2 demuxer of ffmpeg documentation, creating an MKV file from a set of JPEG pictures seems simple.
But when I run :
ffmpeg -v debug -i 'img-%03d.jpeg' out.mkv
It fails and reports :
ffmpeg version 2.1.3 Copyright (c) 2000-2013 the FFmpeg developers
built on Jun 14 2014 17:40:58 with gcc 4.8 (Debian 4.8.2-15)
configuration: --prefix=/media/DOWNLOAD/ip7000_new/.build/i486-linux-gnu/libroot --enable-static --disable-shared --disable-asm --disable-doc --disable-devices --disable-network --disable-bsfs --disable-protocols --disable-yasm --enable-pic
libavutil 52. 48.101 / 52. 48.101
libavcodec 55. 39.101 / 55. 39.101
libavformat 55. 19.104 / 55. 19.104
libavdevice 55. 5.100 / 55. 5.100
libavfilter 3. 90.100 / 3. 90.100
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
Splitting the commandline.
Reading option '-v' ... matched as option 'v' (set logging level) with argument 'debug'.
Reading option '-i' ... matched as input file with argument 'img-%03d.jpeg'.
Reading option 'out.mkv' ... matched as output file.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option v (set logging level) with argument debug.
Successfully parsed a group of options.
Parsing a group of options: input file img-%03d.jpeg.
Successfully parsed a group of options.
Opening an input file: img-%03d.jpeg.
No URL Protocols are registered. Missing call to av_register_all()?
Last message repeated 4 times
[image2 @ 0xa7d0ce0] Could find no file with path 'img-%03d.jpeg' and index in the range 0-4
img-%03d.jpeg: No such file or directoryI tried with different releases of ffmpeg and behaviour is the same.
Running it with strace doesnot show any try to open some files, so surely I miss something... -
avdevice/decklink : 10 Bit support for Decklink input device
18 janvier 2015, par Georg Lippitschavdevice/decklink : 10 Bit support for Decklink input device
Example to capture video clip at 1080i50 10 bit :
ffmpeg -bm_v210 1 -f decklink -i ’UltraStudio Mini Recorder@11’ -acodec copy -vcodec copy output.aviSigned-off-by : Michael Niedermayer <michaelni@gmx.at>