
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (46)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (9285)
-
what is a good way to calculate frame rate of a video using ffmpeg ?
25 septembre 2013, par user1914692I find two possible ways :
(Option 1)
inVStruct.inVideoStream->r_frame_rate.num / inVStruct.inVideoStream->r_frame_rate.den[comment :] correct for some videos. Not always correct.
it is libavformats guess, not exact. (see http://ffmpeg.org/pipermail/ffmpeg-devel/2005-May/003079.html )(Option 2)
(double) inVStruct.inCodecContext->time_base.den / inVStruct.inCodecContext->time_base.num / inVStruct.inCodecContext->ticks_per_frame) ;[comment :] correct for some videos. Not always correct.
Please recommend one for all video files.
-
What is a good way to calculate the frame rate of a video file using ffmpeg ?
25 septembre 2013, par user1914692I find two possible ways :
(Option 1)
inVStruct.inVideoStream->r_frame_rate.num / inVStruct.inVideoStream->r_frame_rate.den[comment :] correct for some videos. Not always correct.
it is libavformats guess, not exact. (see http://ffmpeg.org/pipermail/ffmpeg-devel/2005-May/003079.html )(Option 2)
(double) inVStruct.inCodecContext->time_base.den / inVStruct.inCodecContext->time_base.num / inVStruct.inCodecContext->ticks_per_frame) ;[comment :] correct for some videos. Not always correct.
Please recommend one for all video files.
-
Anomalie #3373 (Nouveau) : Erreur "PHP Strict Standards" dans inc\syndic.php
12 janvier 2015, par Eric CamusSPIP 3.0.17, sites 1.7.13 sur IIS 6 + PHP 5.4.35
La ligne du fichier "inc\syndic.php" :
$lang = reset(explode("-",$lang));
Rempli nos log d’erreur PHP de :
[11-Jan-2015 21:18:44 Europe/Paris] PHP Strict Standards: Only variables should be passed by reference in D:\xxxxx\yyyyy\plugins-dist\sites\inc\syndic.php on line 329
Modification proposé :
$buf=explode("-",$lang);
$lang = reset($buf);