Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (57)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7806)

  • Evolution #3284 (En cours) : changer le vert de l’espace privé par defaut

    20 juillet 2015, par b b

    J’ouvre de nouveau puisque la modification a été annulée par r22314 et r22314, cf :

    http://archives.rezo.net/archives/spip-commit.mbox/E7F52BFKBGVZYK4UAOUUUKDI7S7AF4GE/

  • how to customise images in frames of video using ffmpeg

    4 novembre 2014, par user946646

    I have video with static pictures and text. I need to update those static pictures with dynamic pictures and text. In the video, pictures are moving. Let’s say "Welcome Kavya" text is moving from left to right for first 1 second etc. I extracted frames of video using this
    command :

    ffmpeg -i /var/www/html/tutorials/v1.mp4 -r 20 -f image2 /var/www/html/tutorials/ffmpeg_temp/%05d.png

    Now I have 20 frames, and in each frame "Welcome Kavya" text is in different coordinates. I am taking each frame and updating the dynamic text according to static text coordinate and creating new video with dynamic content. This takes so much time and cumbersome.

    The video has many other texts and pictures to customize. Please advise me if any other way to do this.

  • Windows 2003 using php popen "start /b" because of executing ffmpeg.exe

    1er juillet 2013, par Oh Seung Kwon

    I have some problem.

    There is a php code that convert audio(wav) to mp3 file with using ffmpeg.exe.

    Here is some code.

    $cmd = "./inc/ffmpeg.exe -i ".$file_name." -acodec mp3 -y -ac 1 -ab 96k ".$mp3_file_name;

    echo $cmd;
    echo "Windows";
    $handle = popen("start /B ".$cmd, "r");
    while(!feof($handle)) {
       $read = fread($handle, 2096);
       echo $read;
    }
    pclose($handle);

    Problem is when I execute this code, ffmpeg.exe process isn't terminated. And not gonna die when I stop process with using Windows task manager.

    Do you have a solution for this situation ?