Recherche avancée

Médias (91)

Autres articles (99)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (7995)

  • Bash script to extract first seconds and rename mp3 files in folder

    15 mai 2015, par Designs Edge

    I have a folder with several MP3 files that I need to extract 10-15 seconds of audio from. I would also like to rename these by appending sample-(name).mp3 to the converted files. How can I do this via Shell Script ? Thanks in advance !

  • duration of uploaded video in PHP

    14 juillet 2015, par 121kk

    I need to know the duration of video that I uploaded in a page. I have written a php script for doing this

    <?php

    $command = "ffmpeg -i video.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d ,; ";
    $cm = shell_exec($command) ;
    echo "$cm";

    ?>

    When I execute this commands on terminal it shows duration, but on calling it is in PHP page it does not gave an output.
    Please provide me a solution....

    Thanks in Advance

  • Duration of an uploaded video in PHP

    14 juillet 2015, par 121kk

    I need to know the duration of a video that I have uploaded to a page. I have written a PHP script for doing this :

    <?php

    $command = "ffmpeg -i video.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d ,; ";
    $cm = shell_exec($command) ;
    echo "$cm";

    ?>

    When I execute this program via terminal it shows duration, but on calling it in a PHP page it does not give an output.
    Please provide me a solution....

    Thanks in advance.