
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (82)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (12879)
-
avutil/tx_template : Don't waste space for inexistent factors
22 octobre 2022, par Andreas Rheinhardtavutil/tx_template : Don't waste space for inexistent factors
It is possible to avoid the factors array for the power-of-two
tables for which said array is unused by using a different
structure for initialization for power-of-two tables than for
non-power-of-two-tables. This saves 3*15*16B from .data.Reviewed-by : Lynne <dev@lynne.ee>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
compiling ffmpeg with libvpx, unable to find decoder
9 janvier 2024, par mr.NobodyI am trying to compile ffmpeg with libvpx support on Windows with Visual Studio compiler.


I am using msys2 for building platform and running flowing commands for libvpx


cd libvpx
./configure --prefix="$HOME/ffmpeg_build" --target=x86_64-win64-vs16 --as=yasm
make
make install



then adding path file and compiling ffmpeg


cd ffmpeg
PATH="$HOME/bin:$PATH" 
PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" 
./configure --toolchain=msvc --arch=x86_64 \
 --prefix="$HOME/ffmpeg_build" \
 --pkg-config-flags="--static" \
 --extra-cflags="-I$HOME/ffmpeg_build/include" \
 --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
 --extra-libs=-lpthread \
 --extra-libs=-lm \
 --bindir="$HOME/bin" \
 --enable-libvpx 



When I run the command above, I get the errror :


libvpx enabled but no supported decoders found



how can I solve this problem ?


-
FFMPEG linking with VPX library
20 août 2016, par Mohammad Abu MusaI want to compile a code I am writing to work with ffmpeg but I can not link this code. I added all the required libraries but still do not work
g++ -L/home/user/ffmpeg_build/lib -o "vpx" ./src/vpx.o -lpthread -lavcodec -lavutil -lvpx
/home/user/ffmpeg_build/lib/libavcodec.a(frame_thread_encoder.o): In functionff_frame_thread_encoder_init’ :
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:213 : undefined reference topthread_create'
/home/user/ffmpeg_build/lib/libavcodec.a(frame_thread_encoder.o): In functionff_frame_thread_encoder_free’ :
makefile:45 : recipe for target ’vpx’ failed
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:238 : undefined reference topthread_join'
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:238: undefined reference topthread_join’
/home/user/ffmpeg_build/lib/libavcodec.a(pthread_frame.o) : In functionff_frame_thread_free':
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_frame.c:564: undefined reference topthread_join’
/home/user/ffmpeg_build/lib/libavcodec.a(pthread_frame.o) : In functionff_frame_thread_init':
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_frame.c:704: undefined reference topthread_create’
/home/user/ffmpeg_build/lib/libavcodec.a(pthread_slice.o) : In functionff_slice_thread_free':
/home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_slice.c:116: undefined reference topthread_join’`