
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 (53)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
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 (7831)
-
Compiling custom FFMPEG
25 novembre 2019, par ArttuI need to compile ffmpeg from source for CentOS. The goal it to convert MP3 and WAV to FLAC. I tried to compile ffmpeg with this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
and it worked fine, but took approximately 20min and compiled a bunch unnecessary things, even thought I did not used next options as recommended in guide, but used :PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
--prefix="/opt/tmg/ffmpeg_build" \
--pkg-config-flags="--static" \
--extra-cflags="-I/opt/tmg/ffmpeg_build/include" \
--extra-ldflags="-L/opt/tmg/ffmpeg_build/lib" \
--extra-libs=-lpthread \
--extra-libs=-lm \
--bindir="/opt/tmg/ffmpeg_build/bin" \
--enable-gpl \
--enable-libfreetypeMy question is what do I need for MP3 and WAV to FLAC and how do I compile just that part ?
I found in configuration
--disable-all
option, but what do I have to enable ?Thanks in advance.
-
C++ How to make a rtsp stream buffer in RAM and write it to file if needed
18 septembre 2023, par FenyaHereThe task is to receive data from rtsp and without decoding keep last 60 seconds of it in RAM to save when needed. Right now i'm doing it with OpenCV, decode frames and keep a buffer of frames, so when event triggers i just copy the buffer, encode it and save to file. But current uses too much memory and CPU to decode/encode and keep unencoded frames.


I've tried to look into gstreamer library but failed to come up with a solution (i'm new to gstreamer). Should i look more into gstreamer (gstreamer-1.0, RTSP H264 stream and shared memory for example) ? Are there easier ways to do it(found this : https://trac.ffmpeg.org/wiki/Capture/Lightning) ? Thank you for your help !


-
Revision 93109 : Compat PHP7 (peut être pas encore suffisant). La structure foreach ...
11 juin 2018, par marcimat@… — LogCompat PHP7 (peut être pas encore suffisant).
La structure foreach change de comportement et s’applique par défaut sur une copie du tableau passé.
Si on modifie le tableau dans le foreach… bien celui d’origine n’est pas affecté. Pour retrouver
le comportement d’avant dans ces cas là, il faut passer la valeur par référence.
cf.
https://wiki.php.net/rfc/php7_foreach
http://php.net/manual/fr/migration70.incompatible.php