Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (53)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (3880)

  • Multi core theora encoding

    26 octobre 2012, par Jamie Taylor

    We convert uploaded video to MP4 and OGV, but while trying to speed up the process we've hit a wall. We found the bottleneck is the OGV encoding, While it might take 5 minutes to convert a 350mb AVI to MP4, it takes roughly 25-30 minutes to convert the same file to OGV.

    avconv supports multithreading/multiple cores but it seems that libtheora doesn't, does anyone have any way of encoding over multiple cores ? I found an old mail group which discussed a patch but I can't find much else about it, or if it even still works 5 years on.

    So. Is multi-core theora processing possible and what should I use to do it ?

    For Reference :

    avconv -y -i big_buck_bunny_720p_surround.avi -vcodec libtheora -qscale 10 -bufsize 20M -same_quant -acodec libvorbis -ac 2 -ar 44100 -ab 128k buck.ogv
  • 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