Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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, par

    The 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, par

    To 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 user1914692

    I 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 user1914692

    I 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 Camus

    SPIP 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);