Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (80)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • src/flac/utils.c : Make sure get_console_width() returns value > 0.

    8 juillet 2014, par Erik de Castro Lopo
    src/flac/utils.c : Make sure get_console_width() returns value > 0.
    

    Previous version of get_console_width() may return 0 which will result in
    a division by 0 in stats_print_name() :

    console_width = get_console_width() ;
    len = strlen_console(name)+2 ;
    console_chars_left = console_width - (len % console_width) ;

    Bug-report : https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739613
    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/utils.c
  • SIMD : Improve decoding of some 24 bit files

    19 février 2017, par Erik de Castro Lopo
    SIMD : Improve decoding of some 24 bit files
    

    Accelerates decoding of non-Subset 24-bit FLAC files (where lpc_order
    > 12).

    The improved function is FLAC__lpc_restore_signal_wide_intrin_sse41().
    It requires SSE4.1 and it’s used only by 32-bit libFLAC.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/lpc_intrin_sse41.c
  • avformat/dv : implement fallback in dv_extract_pack()

    17 juillet 2014, par Michael Niedermayer
    avformat/dv : implement fallback in dv_extract_pack()
    

    Fixes Ticket2340
    Fixes Ticket2341

    Based-on mail from Dave Rice <dave@dericed.com>
    Tested-by : Dave Rice <dave@dericed.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/dv.c