
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (62)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
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 (...)
Sur d’autres sites (6911)
-
Compile ffmpeg as stand alone binary
13 octobre 2016, par GuigI’m trying to compile
ffmpeg
as a standalone binary (because I want to use it in AWS lambda)I can get things to work fine on the server where I’m compiling, but if I copy the binary and run it from another server, I get :
./ffmpeg: error while loading shared libraries: libvdpau.so.1: cannot open shared object file: No such file or directory
So it sounds like something didn’t made it into the binary. From what I’ve read, I’ve to compile ffmpeg with the flags
--disable-shared
and--enable-static
, which I’ve done :PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
--prefix="$HOME/ffmpeg_build" \
--pkg-config-flags="--static" \
--extra-cflags="-I$HOME/ffmpeg_build/include" \
--extra-ldflags="-L$HOME/ffmpeg_build/lib" \
--bindir="$HOME/bin" \
--disable-shared \
--enable-static \
--enable-gpl \
--enable-libass \
--enable-libfreetype \
--enable-libmp3lame \
--enable-libvpx \
--enable-libx264
PATH="$HOME/bin:$PATH" make
make install
make distclean
hash -rIs there something I’m missing ?
-
Compile ffmpeg as stand alone binary
31 décembre 2023, par GuigI'm trying to compile
ffmpeg
as a standalone binary (because I want to use it in AWS lambda)


I can get things to work fine on the server where I'm compiling, but if I copy the binary and run it from another server, I get :



./ffmpeg: error while loading shared libraries: libvdpau.so.1: cannot open shared object file: No such file or directory



So it sounds like something didn't made it into the binary. From what I've read, I've to compile ffmpeg with the flags
--disable-shared
and--enable-static
, which I've done :


PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
 --prefix="$HOME/ffmpeg_build" \
 --pkg-config-flags="--static" \
 --extra-cflags="-I$HOME/ffmpeg_build/include" \
 --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
 --bindir="$HOME/bin" \
 --disable-shared \
 --enable-static \
 --enable-gpl \
 --enable-libass \
 --enable-libfreetype \
 --enable-libmp3lame \
 --enable-libvpx \
 --enable-libx264
PATH="$HOME/bin:$PATH" make
make install
make distclean
hash -r




Is there something I'm missing ?


-
Error while building ParaView on ubuntu
21 février 2014, par user3337492I´ve got school project that I have to build ParaView and work with it in parallel.
I am using this guide : http://paraview.org/Wiki/ParaView:Build_And_Install
I´ve installed all the required packages and now it is time to "Configure ParaView With CMake".
When I do this recomended code
mkdir $HOME/projects/ParaView-bin
cd $HOME/projects/ParaView-bin
ccmake $HOME/projects/ParaView3
the terminal shows this :
CMake Error : The source "/home/kulis/projects/ParaView3/CMakeLists.txt" does
not match the source "/home/kulis/projects/ParaView/CMakeLists.txt" used to
generate cache. Re-run cmake with a different source directory.so instead of ParaView3 I use ParaView in code : ccmake $HOME/projects/ParaView
then its possible to set all the variables and compile. But there comes the real problem. When i want to compile it, the terminal shows this error message :
ERROR ADD_PARAVIEW_VIEW_MODULE called without VIEW_TYPE or VIEW_XML_GROUP
CMake Error : The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files :
/home/kulis/projects/ParaView/VTK/IO/FFMPEG/FFMPEG_INCLUDE_DIR
used as include directory in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avcodec_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avformat_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avutil_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_swscale_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEGAnd I do not really know what to do with it.
I would very much appreciate your help. Thanks