Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (8)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (2410)

  • Revision e3597c6af7 : Moving all scan/iscan code into separate vp9_scan.{h, c} files. Now we have ent

    7 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_alloccommon.c


     Modify /vp9/common/vp9_entropy.c


     Modify /vp9/common/vp9_entropy.h


     Add /vp9/common/vp9_scan.c


     Add /vp9/common/vp9_scan.h


     Modify /vp9/vp9_common.mk



    Moving all scan/iscan code into separate vp9_scan.h, c files.

    Now we have entropy code separate from scan/iscan code. The next step
    in future is to move iscan code from common part to the encoder.

    Change-Id : Id9732f7d80aec00af35c1d58d1137c4c96c91451

  • Revision 5b1dc1515f : Fix a bunch of TODO from vp9_short_idct32x32_add_neon. - full ASM version, no m

    26 septembre 2013, par Christian Duvivier

    Changed Paths :
     Delete /vp9/common/arm/neon/vp9_idct32x32_neon.c


     Modify /vp9/common/arm/neon/vp9_short_idct32x32_add_neon.asm


     Modify /vp9/vp9_common.mk



    Fix a bunch of TODO from vp9_short_idct32x32_add_neon.

    - full ASM version, no more C gateway file.
    - integrate combine-add with last step of 2nd pass.
    - remove a few push/pop pairs.
    - some instruction reordering to hide latency.

    Change-Id : Ic9d9933c908b65d1bf7ba8fd47b524cda808c9c6

  • Issue when calling ffmpeg.c twice that makes the app crashes ?

    6 février 2013, par Jimmy

    I'm trying to call ffmpeg.c to trim a video based on this code 'video-trimmer'. So when I try to run the activity (that loads and uses the native lib) the first time I click trin it works and I could trim the video but when I try to run it again it crashes (and it only work with the application restarts).

    So I spend three days looking for a solution for this issue, most of the answers says the issue with the static variables in ffmpeg.c and creating a lib that loads and unload the class fixes the issue (answer1, answer2). So I tried to apply the solution that is based on the answers and this github repo on the video-trimmer project but all my attempts failed.

    Is there any one knows about a fork of the 'video-trimmer' project that fixes the issue ?. or can anybody provide step by step answer of how to implement the solution in the 'video-trimmer' project (because I tried to follow all the solution on the web and apply them in that project but with no luck).