
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 (75)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 (...)
Sur d’autres sites (10159)
-
How to configure linking so that compiled binary finds libraries ?
5 octobre 2015, par Jean JordaanI’m compiling
ffmpeg
. Configuration :--prefix=/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build
--extra-cflags='-I/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/include
-I/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/include'
--extra-ldflags='-L/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/lib
-L/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/lib'The build completes fine, and
LD_LIBRARY_PATH=./parts/ffmpeg-build/lib:./parts/x264-build/lib ./parts/ffmpeg-build/bin/ffmpeg
runs the binary.Why is that
LD_LIBRARY_PATH
necessary ? Didn’t I already tell the compiler to link against these libraries ? -
How to execute a ffmpeg code on a GPU without using the command line ?
24 octobre 2018, par Gilberto UgoliniWe have written a short code in C code to read a video file, using common libraries as
libavcodec
,libavformat
, etc.The code is running smoothly but only using the CPU resources. We’d need to run the code on the GPU (Nvidia GeForce 940MX and 1080Ti). Is there a way to force the code to be run on the GPU ?
While using the command line (e.g.,
ffmpeg -hwaccel cuvid -i vid.mp4 out.avi
) things are fine, we are not able to have it working on the GPU from the source code.We are working with Ubuntu 18.04, and ffmpeg correctly compiled with CUDA 9.2
-
FFmpeg ios sample code for video streaming
29 avril 2014, par iJoseI have done with
Video Encoding
usingAVFoundation
framework in ios.Now i want to stream these video to a
RTMP
server usingFFMPEG
.
IT would be great help if anyone of you post a link / sample Code for achieving this.
Any other Solution other than this is also invited.Thanking you in advance.