Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (12514)

  • Anomalie #4261 : Vider l’opcache au recalcul et à l’upgrade

    5 janvier 2019, par jluc -

    Voilà ce que j’ai ajouté dans mon fichier d’option :

    if (isset($_REQUEST[’var_mode’]) and ($_REQUEST[’var_mode’] == ’recalcul’)) 
    

    if (function_exists(’spip_clear_varnish_cache’))
    spip_clear_varnish_cache() ;

    include_spip (’inc/invalideur’) ;
    suivre_invalideur(’recalcul’) ;

    if (function_exists(’opcache_reset’))
    opcache_reset() ;

    if (function_exists(’apc_clear_cache’))
    apc_clear_cache() ;
    apc_clear_cache(’user’) ;

    spip_log("recalcul a vidé varnish, SPIP, opcache et apc_cache") ;

    C’est un peu radical mais il n’y a pas pire que du code zombie qui traîne et colle dans les recoins d’un cache en produisant des résultats aberrant sans qu’on puisse s’en débarrasser.

  • FFMPEG - ffmpeg image zoom-in according to duration

    14 septembre 2018, par Zeeshan Sheikh

    ffmpeg image zoom-in according to length of video
    for example, if i set length of video for two minutes. than it should continuously zoom out for two minutes,

    i have already zoom-out command but i need this for Zoom-in

    ffmpeg -loop 1 -i vide.mp4 -vf "zoompan=z=’1.5-on/duration*0.2’:d=325" -t 30 output.mp4

  • Anomalie #3748 (Fermé) : La fonction recuperer_lapage est obsolète ; à remplacer par recuperer_url

    10 mars 2016

    Après la release de 3.1.1, en local et chez OVH, la détection de version de SPIP affichée en pied du backoffice ne fonctionnait plus.
    Je n’avais pas l’annonce "La mise à jour 3.1.1 de SPIP est disponible" même après lancement du genie mise_a_jour.

    En local mon /tmp/cache/xml/archives.xml restait vide

    Apparement le problème vient de :
    genie/mise_a_jour.php
    $res = recuperer_lapage($url, false, ’GET’, _COPIE_LOCALE_MAX_SIZE, ’’, false, $a) ;
    qui ne renvoie rien
    en remplacant par la fonction non obsolète
    $res = recuperer_url($url) ;
    on récupère bien l’archive et résout le bug