Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (102)

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

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

Sur d’autres sites (12573)

  • AWS Lambda making video thumbnails

    9 décembre 2017, par Jesus

    I want make thumbnails from videos uploaded to S3, I know how to make it with Node.js and ffmpeg.

    According to this forum post I can add libraries :

    ImageMagick is the only external library that is currently provided by
    default, but you can include any additional dependencies in the zip
    file you provide when you create a Lambda function. Note that if this
    is a native library or executable, you will need to ensure that it
    runs on Amazon Linux.

    But how can I put static ffmpeg binary on aws lambda ?

    And how can I call from Node.js this static binary (ffmpeg) with AWS Lambda ?

    I’m newbie with amazon AWS and Linux

    Can anyone help me ?

  • AWS Lambda making video thumbnails

    5 février 2017, par Jesus

    I want make thumbnails from videos uploaded to S3, I know how to make it with Node.js and ffmpeg.

    According to this forum post I can add libraries :

    ImageMagick is the only external library that is currently provided by
    default, but you can include any additional dependencies in the zip
    file you provide when you create a Lambda function. Note that if this
    is a native library or executable, you will need to ensure that it
    runs on Amazon Linux.

    But how can I put static ffmpeg binary on aws lambda ?

    And how can I call from Node.js this static binary (ffmpeg) with AWS Lambda ?

    I’m newbie with amazon AWS and Linux

    Can anyone help me ?

  • bash ffmpeg command not found

    15 décembre 2017, par Sunil Garg

    I have a CentOS machine on which I want to install ffmpeg. I tried

    yum install ffmpeg

    but unable to install and showing errors on the console

    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libtheoradec.so.1()(64bit)
    Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libSDL-1.2.so.0()(64bit)
    Error: Package: ffmpeg-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libSDL-1.2.so.0()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libhogweed.so.2()(64bit)
    Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libv4l2.so.0()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libgnutls.so.28()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libass.so.5()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libopenjpeg.so.1()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libgsm.so.1()(64bit)
    Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libcdio_paranoia.so.1(CDIO_PARANOIA_1)(64bit)
    Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libpulse.so.0(PULSE_0)(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libva.so.1()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libgnutls.so.28(GNUTLS_3_0_0)(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libschroedinger-1.0.so.0()(64bit)
    Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
              Requires: libtheoraenc.so.1(libtheoraenc_1.0)(64bit)
    You could try using --skip-broken to work around the problem
    You could try running: rpm -Va --nofiles --nodigest

    then I followed this link this created a bin folder having

    -rwxr-xr-x 1 root root 21545536 Dec 14 19:38 ffmpeg
    -rwxr-xr-x 1 root root 21452512 Dec 14 19:38 ffprobe
    -rwxr-xr-x 1 root root 19227136 Dec 14 19:38 ffserver
    -rwxr-xr-x 1 root root   505728 Dec 14 19:11 lame
    -rwxr-xr-x 1 root root  2779368 Dec 14 18:51 nasm
    -rwxr-xr-x 1 root root  1078048 Dec 14 18:51 ndisasm
    -rwxr-xr-x 1 root root  2550848 Dec 14 18:54 vsyasm
    -rwxr-xr-x 1 root root  2548168 Dec 14 18:54 yasm
    -rwxr-xr-x 1 root root  2526096 Dec 14 18:54 ytasm

    and when I try to run

    [root@ip-XXX-XX-XX-XXX bin]# ffmpeg

    it shows

    bash: ffmpeg: command not found

    Am I missing something ?