Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (57)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

  • Anomalie #3626 (Nouveau) : Les tables ne s’installent pas si l’on choisi un chiffre comme simple p...

    18 décembre 2015, par Franck Dalot

    Bonjour
    SPIP 3.1.0-rc3 [22681]
    PHP 5.4.45 chez ovh

    En voulant faire un test, je viens de me rendre compte que si comme préfix de tables au moment de l’installation, l’on choisi de ne mettre qu’un simple chiffre, alors l’installation ne fonctionne pas correctement.
    Pour reproduire le problème, il suffit de mettre un simple chiffre à l’étape 2 de l’installation, exemple "8"
    Quand on arrive à l’étape 3, il y a bien le message "La structure de votre base de données est installée"
    Par contre, si je regarde à ce moment là les tables via phpmyadmin, elles sont absentes, et si je continu l’installation, à la fin, j’aurais comme message :
    Site en travaux
    Attention : un problème technique (serveur SQL) empêche l’accès à cette partie du site. Merci de votre compréhension.

    Ce qui est logique car il n’y a pas de tables.

    Franck

  • Insert text on sequence of image and create video using imagemagick or graphicsmagick with node.js

    12 décembre 2015, par Keyur Sakaria

    I am trying to create a sequence of image with dynamic text using imagemagick and then convert into video using ffmpeg. The issue I am facing right now :

    1. I was able to put text on image but now I want to move that text and sync with the character on image. Below is the link of what I have achieved

    http://tinypic.com/player.php?v=2ciic8g%3E&s=9#.VmrAZUp97Dc

    The bright white "text goes here" text should sync with the character behind

    Below is the code which I have written

    gm("original_images/moving/" + text + ".png")
       .fill("#FCF7FB")
       .fontSize(40)
       .drawText(x, moveY, "text goes here", "center")
       .font("font/BTTTRIAL_1.ttf")
       .write("newImages/demo" + i + ".png", function(err)
       {
           count++;
           console.log("success : " + err);
           console.log("i : " + i);
           console.log("moving : " + moveX);

           if(count == 72)
           {
               console.log(count);
               var date = moment().format('MMMMDDYYYYhmmssa');
               var cmd = 'ffmpeg -r 17 -i newImages/demo%d.png -c:v libx264 -r 24 -pix_fmt yuv420p output/' + date + '.mp4';

               exec(cmd, function(error, stdout, stderr)
               {
                   console.log(error)
                   console.log(stdout)
                   console.log(stderr)
               });
           }
       });

    I am trying to calculate x and y according to image and im getting the values in decimal, which graphicsmagick is not considering and rounding it thus text is not syncing with image and goes up and down

    If you have any other suggestions or ways to achieve what im trying to do please let me know.

    Thanks in advance.

  • Anomalie #3611 : Impossible de rajouter un lien de traduction

    4 décembre 2015

    Je confirme le bug.

    tout dépend de la configuration du multilinguisme.

    cas 1 : multilingue avec des articles qui se mélangent dans les mêmes rubriques
    - Rubriques : activer le menu de langue NON
    - Articles : activer le menu de langue OUI
    le multlinguisme fonctionne parfaitement. le menu change fonctionnement parfaitement

    cas 2 : multilngue avec arborescence parallèle
    - Rubriques : activer le menu de langue OUI
    - Articles : activer le menu de langue OUI

    on a une incohérence :
    - le menu changer ne fonctionne pas ... rien ne se déroule.
    mais à priori ce menu est inutile puisque la langue de l’article est déterminée par sa position

    dans ce cas, il faudrait :
    - dans le menu configuration de multilinguisme, avoir un js qui décoche langue des rubriques si on coche langue des articles
    - masquer le lien "changer de langue" (qui ne sert plus à rien)
    - lorsqu’on écrit une traduction, au moment de l’enregistrement déterminer automatiquement la langue selon la rubrique dans lequel il sera placé
    actuellement il faut déterminer à la main la langue de la traduction (pas pratique) et c’est impossible car le menu "changer" ne fonctionne plus.