Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (60)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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 (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6714)

  • Revision 907016fdc7 : Remove gcc-specific __label__ Use unique names and ditch the local label declar

    21 mars 2013, par Shimon Doodkin

    Changed Paths : Modify /vp8/encoder/x86/quantize_sse2.c Remove gcc-specific __label__ Use unique names and ditch the local label declaration. Visual Studio does not support it. https://code.google.com/p/webm/issues/detail?id=561 Change-Id : (...)

  • Revision b0efddd8e6 : vp9_ethread : change mask_filter to a local variable The mask_filter in RD_OPT s

    20 novembre 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_rd.h


     Modify /vp9/encoder/vp9_rdopt.c



    vp9_ethread : change mask_filter to a local variable

    The mask_filter in RD_OPT struct is used to record rd result in
    filter decision. It is only used in pick_inter_mode functions,
    and is removed from the struct and declared as a local variable.

    Change-Id : I3c95c8632ba7241591ce00ef2ef5677b5e297d7b

  • ffprobe/ffmpeg exec doesn't return result on local machine, but works on production system

    27 juillet 2015, par Kinesias

    I want to get the duration of a movie, using ffprobe (part of ffmpeg).
    The command line I’m using is this :

    ffprobe -v error -show_entries format=duration -of
    default=noprint_wrappers=1:nokey=1
    path/to/video.mov

    It works perfectly in the shell, gives me a result of 4.5554 (seconds).

    However, if I call this command via exec on my local machine, I get an empty result.

    var_dump( exec("ffprobe -v .......") );
    returns string(0) ""

    Now comes the burner : It works perfectly on the production machine, though !!

    These are my configurations :

    Local machine:        Mac OS 10.9.5,      PHP 5.6.11   ffmpeg 2.7.1
    Production machine:   Mac OS Server 10.6  PHP 5.3.1    ffmpeg 2.7.2

    Is this kind of a bug in PHP 5.6 or something ???
    Thanks, Matt