Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (64)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6173)

  • Anomalie #3562 (Fermé) : onAjaxLoad s’applique sur Document lorsqu’il provient d’une fenêtre modal...

    6 mai 2017, par Anonyme

    Appliqué par commit r23533.

  • Keep the original format when adding audio-filter, auto-detect format from original file

    13 septembre 2016, par cnvzmxcvmcx

    Multiple users upload different kind of videos and I do not save the format of these videos, just the codecs. ffmpeg detects the video and audio codec when needed and it was all good till today. I was adding a audio normalization step. How to make ffmpeg auto choose a container format based on codecs ? It seems ffmpeg will choose the output audio codec based on the format specified. Can I ask it to stick to original format and codec whatever it was ?

    ffmpeg -y -i /mnt/tmp/asjkdh39 -c:v copy -af "volume=10.7dB" /mnt/tmp/0540hsl

    For the above command, I get an error :

    [NULL @ 0x9214a0] Unable to find a suitable output format for '/mnt/tmp/0540hsl'
  • ffmpeg works from terminal but not by php script

    22 janvier 2019, par Naman Tamrakar

    I have to get the thumbnail image of video i am using the ffmpeg. On my server i run the ffmpeg command from ssh then it is working but from the php exec function it is not working it gives the error /usr/bin/ffmpeg : no such file or dirctory but the ffmpeg is installed on this location usr/bin/ffmpeg.
    my source code is :

    $ffmpeg = '/usr/bin/ffmpeg';

    $videoname = 'myvideo.mp4';

    $video = $_SERVER['DOCUMENT_ROOT'].'/uploads/videos/'.$videoname;

    $image = $_SERVER['DOCUMENT_ROOT'].'/uploads/thumbs/thumb.jpg';

    $second = 1;

    $cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg $image 2>&1";

    exec($cmd);

    Please provide any solution.