Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (77)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10920)

  • Revision a1daf009be : Merge "Use lookup table to find pixel numbers in block"

    8 janvier 2015, par Jingning Han

    Merge "Use lookup table to find pixel numbers in block"

  • Find the correct FFmpeg path in php

    30 décembre 2014, par Ashraf Hefny

    I am using FFmpeg with PHP on CentOS server.
    the php code is

    $thumbnail = $this->generateRandomString(25);
    $ffmpeg = "/usr/bin/man"; // or /usr/share/ffmpeg {not working}
    $videoFile = $_FILES['file']['tmp_name'];
    $imageFile = "uploads/images/video_thumbnail/$thumbnail.jpg";
    $size = '340x250';
    $getFrom = 10;
    $cmd = "$ffmpeg -i $videoFile -an -ss $getFrom -s $size $imageFile";
    shell_exec($cmd);

    When running command $whereis FFmpeg

    output is : ffmpeg: /usr/bin/ffmpeg /usr/share/ffmpeg /usr/share/man/man1/ffmpeg.1.gz

    So what’s the correct path.

  • Could not find audio device using ffmpeg [on hold]

    15 décembre 2014, par flight

    I execute the command :

    ffmpeg -list_devices true -f dshow -i dummy

    And find out that Audio device is "Microphone "

    After then execute Command :

    ffmpeg -f dshow -i audio="Microphone " -acodec libmp3lame -ab 128k -ac 1 -ar 44100 -re -f ac1.mp3

    Gives the Error :
    Could not find Audio device.

    Please recommend a feasible approach to solve this problem.