
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 (80)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12732)
-
FFpyplayer installation on Raspberry Pi 3
2 décembre 2017, par id911first, I’m quite new to posting questions.
I’m trying to install FFPyplayer on Raspberry Pi 3 for the past few weeks, and it keeps failing. I’m frustrated beyond words with myself now. If someone can lend a hand, point me in right direction or tell me what steps I’m missing, I’d be very very grateful.
Below are the steps I followed.- sudo apt-get -y install libsdl2-dev libsdl2-mixer-dev python-dev
- mkdir /ffmpeg_sources
-
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH :$HOME/ffmpeg_build/lib
-
sudo apt-get -y install yasm
- cd /ffmpeg_sources
- wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
- tar xzf yasm-1.3.0.tar.gz
- cd yasm-1.3.0
- ./configure —prefix="$HOME/ffmpeg_build" —bindir="$HOME/ffmpeg_build/bin"
- make
-
make install
-
sudo apt-get -y install nasm
- cd /home/pi/ffmpeg_sources
- wget http://www.nasm.us/pub/nasm/releasebuilds/2.13.01/nasm-2.13.01.tar.xz
- tar xf nasm-2.13.01.tar.xz
- cd nasm-2.13.01
- ./configure —prefix="/home/pi/ffmpeg_build" ---
bindir="/home/pi/ffmpeg_build/bin" - make
-
make install
-
sudo apt-get -y install libx264-dev
- cd /ffmpeg_sources
- wget http://download.videolan.org/pub/x264/snapshots/last_x264.tar.bz2
- tar xjf last_x264.tar.bz2
-
cd x264-snapshot*
-
PATH="$HOME/ffmpeg_build/bin :$PATH" ./configure —prefix="$HOME/ffmpeg_build" —bindir="$HOME/ffmpeg_build/bin" —enable-shared —extra-cflags="-fPIC" ;
-
PATH="$HOME/ffmpeg_build/bin :$PATH" make
-
make install
-
sudo apt-get -y install libmp3lame-dev
- sudo apt-get -y install nasm
- cd /ffmpeg_sources
- wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
- tar xzf lame-3.99.5.tar.gz
- cd lame-3.99.5
- ./configure —prefix="$HOME/ffmpeg_build" —enable-nasm —enable-shared
- make
-
make install
-
sudo apt-get -y install libass-dev libfreetype6-dev libtheora-dev libvorbis-dev
- cd /ffmpeg_sources
- wget http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
- tar xjf ffmpeg-snapshot.tar.bz2
-
cd ffmpeg
-
PATH="$HOME/ffmpeg_build/bin :$PATH" -
PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure —prefix="$HOME/ffmpeg_build" —extra-cflags="-I$HOME/ffmpeg_build/include -fPIC" —extra-ldflags="-L$HOME/ffmpeg_build/lib" —bindir="$HOME/ffmpeg_build/bin" —enable-gpl —enable-libass —enable-libfreetype —enable-libmp3lame —enable-libtheora —enable-libvorbis —enable-libx264 —enable-shared ; -
PATH="$HOME/ffmpeg_build/bin :$PATH" make
-
make install
-
pip install —upgrade cython nose
-
pip install ffpyplayer
Reference I used :
-
Anomalie #2695 : Installation/Activation des plugins : bug et confusion
8 mai 2012, par Piero WbmstrMerci pour ces éclairages. J’ai compris pour SVP et les deux champs "installe" et "actif". Je pensais que c’était en rapport direct avec l’état du plugin dans SPIP. Ce sera un peu déroutant au début mais on s’y fait (j’imagine). Par contre il me semble assez bizarre de laisser actif un plugin (...)
-
FFmpeg & Installation on phpmyadmin [migrated]
18 septembre 2011, par VivekI am attempting to have an interface in which people can upload music files and listen to them through the site. The biggest problem obviously is that someone who uploads an audio track in mp3 format into Mozilla wouldn't be able to play it back (since MF doesn't support mp3 playback since I'm using jPlayer).
I did some research and found out that I could use command line php using FFmpeg to convert the mp3 to ogg or some other supportable format. I believe I understand (a little bit) how command line php works but I was wondering how I could install it onto phpmyadmin on my hosting service ? Could anyone link me to a tutorial or care to explain ? I tried googling it but I just couldn't find it.