
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (105)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...)
Sur d’autres sites (10456)
-
How to pass swfurl to avconv/avplay
9 avril 2013, par MustafeIn order to play rtmp live stream in avplay/avconv some live stream needs swf urls.
I can dump rtmp with rtmpdump by giving swfurl with parameter "-s" and pipe it to the avplay as in the below
rtmpdump -r "rtmp://...../playpath" -s http://urlToswf.swf | avplay -i pipe:0
However I would like to give swf parameter directly to the avplay, in other words, how can we play it without using rtmpdump. In libav documentation here : http://libav.org/avprobe.html it is stated that with rtmp_pageurl you can pass this parameter but I can not achieve it.
Here is a working rtmp link you can try on it.rtmpdump -v -r rtmp://5.63.150.28/atv/atv3 -s http://i.tmgrup.com.tr/p/flowplayer-3.2.10.swf?i=1 | avplay -i pipe:0
-
Action Script - Pass Pause/Break key to native process
1er août 2014, par user341931I’m using FMPEG to process some videos within an air application. I’m using a nativeprocess to pass the relevant arguments to FFMPEG/the command line. I want to be able to pause the process at certain times, and continue a little while later. In the command line pressing the pause/break key pauses the processing and then pressing enter restarts it. But I can’t find a way to encode the Pause/Break key, and then pass it to the the nativeprocess.
Thanks in advance for any help.
-
x86 : simple_idct10_template : fix overflow in pass
12 octobre 2015, par Christophe Gisquetx86 : simple_idct10_template : fix overflow in pass
When the input of a pass has 15 or 16 bits of precision (in particular
the column pass), the addition of a bias to W4 may lead to overflows
in the input to pmaddwd.This requires postponing the adding of the bias to after the first
butterfly. To do so, the fact that m15, unused although zeroed, is
exploited. In case the pass is safe, an address can be directly used,
and the number of xmm regs can be decreased. Otherwise, the 32bits bias
is loaded into it.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>