Advanced search

Medias (1)

Tag: - Tags -/book

Other articles (81)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 April 2011, by

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

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

On other websites (8299)

  • FFmpeg code not working on http url for thumbnail extraction

    1 August 2014, by user2240379

    I am trying to extract thumbnail from sharepoint 2013 video library. I found a link which can extract using ffmpeg. this is the link:
    [How can I save first frame of a video as image?

    filename = "http://siteurl/" + items["FileRef"].ToString();

    When i replaced the input file with sharepoint site url and video name then it does not produce any thumbnail. I also gives error on

    ffmpeg.Start();
           ffmpeg.WaitForExit();
           ffmpeg.Close()

    I would like to understand how make it work for http url.
    If it is not possible to use url in ffmpeg can anyone suggest another method to achieve thumbnail.(as i want the thumbnail to be set automatically using 1st frame from of video if it not set manually)

  • How to convert this php code to javascript

    5 October 2019, by Salman

    I have this php code to check the progress percentage of a ffmpeg video conversion. Basically ffmpeg command generates a log file named "output.txt" from where i can estimate the percentage with the help of this code. I want to create a javascript code where i can directly estimate the percentage from the log file.

    $content = @file_get_contents('output.txt');

    if ($content) {
       //get duration of source
       preg_match("/Duration: (.*?), start:/", $content, $matches);

       $raw_duration = $matches[1];

       //raw_duration is in 00:00:00.00 format. This converts it to seconds.
       $array_reverse = array_reverse(explode(":", $raw_duration));
       $duration      = floatval($array_reverse[0]);
       if (!empty($array_reverse[1]))
           $duration += intval($array_reverse[1]) * 60;
       if (!empty($array_reverse[2]))
           $duration += intval($array_reverse[2]) * 60 * 60;

       //get the time in the file that is already encoded
       preg_match_all("/time=(.*?) bitrate/", $content, $matches);

       $raw_time = array_pop($matches);

       //this is needed if there is more than one match
       if (is_array($raw_time)) {
           $raw_time = array_pop($raw_time);
       }

       //raw_time is in 00:00:00.00 format. This converts it to seconds.
       $array_reverse = array_reverse(explode(":", $raw_time));
       $time          = floatval($array_reverse[0]);
       if (!empty($array_reverse[1]))
           $time += intval($array_reverse[1]) * 60;
       if (!empty($array_reverse[2]))
           $time += intval($array_reverse[2]) * 60 * 60;

       //calculate the progress
       $progress = round(($time / $duration) * 100);

       echo $duration;
       echo $time;
       echo $progress;
    }
  • Revision fbf052df42: Clean up 4x4 coefficient decoding code. Don't use vp9_decode_coefs_4x4() for 2n

    8 December 2012, by Ronald S. Bultje

    Changed Paths: Modify /vp9/decoder/vp9_detokenize.c Clean up 4x4 coefficient decoding code. Don't use vp9_decode_coefs_4x4() for 2nd order DC or luma blocks. The code introduces some overhead which is unnecessary for these cases. Also, remove variable declarations that are only used once, (...)