Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (100)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (10135)

  • Anomalie #3414 (Nouveau) : messages d’erreurs à l’installation d’un plug

    27 mars 2015, par Franck Dalot

    Bonjour :-)

    Quand je fais l’installation d’un plug via SVP pendant un bref instant, j’ai un message d’erreurs qui apparait alors que l’installation semble ok après.
    Contexte :
    SPIP 3.1.0-alpha [21961]
    php 5.6.4
    prefix des tables : spipdev31
    installation en MySQL

    Toutes les catégorie
    Tous les états
    Tous les dépôts
    Toutes les versions compatibles

    Je clique sur "rechercher", apparait 2 notices
    Notice : Undefined index : extension in /home/liendami/www/spip3/spipdev31/ecrire/inc/distant.php on line 942
    Notice : Undefined index : extension in /home/liendami/www/spip3/spipdev31/ecrire/inc/distant.php on line 810

    Je fais le choix d’installer "simples log", je clique sur "télécharger et activer" et alors apparait pendant un bref instant :
    Il y a 3 erreurs dans votre saisie, veuiller vérifier les informations (voir la copie d’écran)

    Puis après, j’ai le message :
    Le téléchargement et l’activation du plugin « Simples Logs » (version : 1.0.7) se sont correctement déroulés
    Franck

  • FFMPEG PYTHON VIDEO STREAMING [on hold]

    11 mai 2015, par ashad rahman

    I write a python script by ffmpeg command rtmp video streaming. Script given below :

    import system
    import os
    import subprocess

    os.chdir('c:\\ffmpeg\\bin\\')
    subprocess.call(['ffmpeg' ,'-re' ,'-i', 'D:\\www\\cms\\playlist\\playlist_1.flv', '-f', 'flv', 'rtmp://a.rtmp.youtube.com/live2/ashadnext.1hxh-gxfq-jm98-a51r'])

    But it does not work it work only by command prompt

  • How to use fluent-ffmpeg module inside node.js scripts ?

    6 avril 2016, par Prasanth

    I am using fluent-ffmpeg for compressing the images. Using command prompt png images compression working fine.
    I tried to use node script for compressing images. Compressing jpg images working fine, but it is not supporting for png images. When compressing the PNG images below code throwing error.
    Is there any attributes missing ?

    var targetPath = image path;

    ffmpeg()
       .input(targetPath)
       .complexFilter('scale=486:-1')
       .save(targetPath);

    Please help me to to resolve this issue.