Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (8)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (3234)

  • Unrecognized option '-enable-libx264'. Error splitting the argument list : Option not found

    9 mars 2020, par DigM

    I’m trying to stream MP4 videos from my server to YouTube and so I installed FFMPEG version. When I then look at the configuration of FFMPEG, I am then presented with the following :

    ffmpeg version 3.3.6 Copyright (c) 2000-2017 the FFmpeg developers
     built with gcc 4.9.2 (Debian 4.9.2-10)
     configuration: --enable-cross-compile --arch=i686 --target-os=linux --disable-yasm --disable-static --enable-shared --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libsoxr --enable-version3 --enable-nonfree --enable-openssl --disable-decoder=ac3 --disable-decoder=ac3_fixed --disable-decoder=eac3 --disable-decoder=dca --disable-decoder=truehd --disable-encoder=ac3 --disable-encoder=ac3_fixed --disable-encoder=eac3 --disable-encoder=dca --disable-decoder=hevc --disable-decoder=hevc_cuvid --disable-encoder=hevc_nvenc --disable-encoder=nvenc_hevc --extra-ldflags='-L/root/daily_build/64_05/4.4.1/LinkFS/usr/lib -L/root/daily_build/64_05/4.4.1/Model/TS-X72/build/RootFS/usr/local/medialibrary/lib -Wl,--rpath -Wl,/usr/local/medialibrary/lib' --extra-cflags='-I/root/daily_build/64_05/4.4.1/LinkFS/usr/include -I/root/daily_build/64_05/4.4.1/Model/TS-X72/build/RootFS/usr/local/medialibrary/include -D_GNU_SOURCE -DQNAP' --prefix=/root/daily_build/64_05/4.4.1/Model/TS-X72/build/RootFS/usr/local/medialibrary
     libavutil      55. 58.100 / 55. 58.100
     libavcodec     57. 89.100 / 57. 89.100
     libavformat    57. 71.100 / 57. 71.100
     libavdevice    57.  6.100 / 57.  6.100
     libavfilter     6. 82.100 /  6. 82.100
     libswscale      4.  6.100 /  4.  6.100
     libswresample   2.  7.100 /  2.  7.100
     libpostproc    54.  5.100 / 54.  5.100

    However, when I then try

    ffmpeg ---enable-libx264

    I then get an error saying :

    Unrecognized option '--enable-libx264'.
    Error splitting the argument list: Option not found

    Do I need to change the configuaration of FFMPEG somehow or run another configuration option first or is there just something wrong with my call to enable libx264 ?

  • ffmpeg map mkv with multiple audio to mkv with more audio

    1er février 2020, par locobastos

    I’ve an MKV like this :

    Input #0, matroska,webm, from 'MyVideo.mkv':
     Stream #0:0(eng): Video: h264 (High), yuv420p(progressive), 1920x1080, 23.98 fps
     Stream #0:1(fre): Audio: dts (DTS), 48000 Hz, 5.1(side), fltp, 768 kb/s (default)
     Stream #0:2(eng): Audio: dts (DTS), 48000 Hz, 5.1(side), fltp, 1536 kb/s

    I’ve would like an output MKV like this :

    Output:
     Stream #0:0(eng): Video: h264 (High), yuv420p(progressive), 1920x1080, 23.98 fps
     Stream #0:1(fre): Audio: E-AC-3, 5.1, 384 kb/s
     Stream #0:2(fre): Audio: E-AC-3, stereo, 384 kb/s
     Stream #0:3(eng): Audio: E-AC-3, 5.1, 384 kb/s
     Stream #0:4(eng): Audio: E-AC-3, stereo, 384 kb/s

    Following this page : https://trac.ffmpeg.org/wiki/Map (Example 1), I’m doing this :

    ffmpeg -i MyVideo.mkv \
    -map 0:0 -map 0:1 -map 0:1 -map 0:2 -map 0:2 \
    -c:v copy
    -c:a:0 eac3 -ab 384k -ac 6 \
    -c:a:1 eac3 -ab 384k -ac 2 \
    -c:a:2 eac3 -ab 384k -ac 6 \
    -c:a:3 eac3 -ab 384k -ac 2
    output.mkv

    But I’m getting this output :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'output.mkv':
     Stream #0:0(eng): Video: h264 (High) (High), yuv420p(progressive), 1920x1080, 23.98 fps
     Stream #0:1(fre): Audio: eac3 (ec-3), 48000 Hz, stereo, fltp, 384 kb/s
     Stream #0:2(fre): Audio: eac3 (ec-3), 48000 Hz, stereo, fltp, 384 kb/s
     Stream #0:3(eng): Audio: eac3 (ec-3), 48000 Hz, stereo, fltp, 384 kb/s
     Stream #0:4(eng): Audio: aac (LC) (mp4a), 48000 Hz, stereo, fltp, 378 kb/s

    Do you have an idea what is my mistake ? I think it’s around my map and -c:a:x parameters

  • ExecutionFailureException : ffmpeg failed to execute command

    31 janvier 2020, par ItsJasonn

    I am trying to concat multiple videos to eachother using PHP and the FFMpeg library. I am able to execute the binaries on my 32-bit Linux server flawless, but I am still getting this error saying...

    Fatal error : Uncaught Alchemy\BinaryDriver\Exception\ExecutionFailureException : ffmpeg failed to execute command ’/var/services/web/vendor/libraries/ffmpeg/ffmpeg’ ’-f’ ’concat’ ’-safe’ ’0’ ’-i’ ’/volume1/@tmp/ffmpeg-concatcg8R3L’ ’-c’ ’copy’ ’/volume1/web/vendor/php/out-1580427487.mp4’ : Error Output : ffmpeg version 4.2.1-static https://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2019 the FFmpeg developers built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516 configuration : —enable-gpl —enable-version3 —enable-static —disable-debug —disable-ffplay —disable-indev=sndio —disable-outdev=sndio —cc=gcc-6 —enable-fontconfig —enable-frei0r —enable-gnutls —enable-gmp —enable-libgme —enable-gray —enable-libfribidi —enable-libass —enable-libfreetype —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-librubberband —enable-libsoxr —enable-libspeex —enable-libsrt —enable-libvorbis —enable-libopus —enable-libtheora —enable-libvidstab —enable-libvo-amrwbenc —enable-libv in /volume1/web/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Concat.php on line 149

    Does anyone know what the issue could be ? Thank you !

    EDIT 1 :
    It seems PHP does not let me create files (I think). PHP FFMPEG attempts to create a temporary file in my /volume1/@tmp/ folder, but no file is being created. I have checked everything on Google, but nothing works for me. I have also checked the permissions and I have 777 on all of my folders.