Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (108)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8471)

  • ffmpeg : Unable to find a suitable output format

    30 janvier 2024, par Pdrewicz

    I'm trying to convert .webm into .dfpwm with ffmpeg

    


    ffmpeg -i /download/test.webm -ac 1 -c:a dfpwm /converted/test.dfpwm -ar 48k -y

    


    And I'm getting this error

    


    ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers
  built with gcc 11 (Ubuntu 11.2.0-19ubuntu1)
  configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
  libavutil      56. 70.100 / 56. 70.100
  libavcodec     58.134.100 / 58.134.100
  libavformat    58. 76.100 / 58. 76.100
  libavdevice    58. 13.100 / 58. 13.100
  libavfilter     7.110.100 /  7.110.100
  libswscale      5.  9.100 /  5.  9.100
  libswresample   3.  9.100 /  3.  9.100
  libpostproc    55.  9.100 / 55.  9.100
Trailing option(s) found in the command: may be ignored.
Input #0, matroska,webm, from '/var/www/html/download/test.webm':
  Metadata:
    ENCODER         : Lavf58.76.100
  Duration: 00:03:19.30, start: -0.007000, bitrate: 191 kb/s
  Stream #0:0(eng): Video: vp9 (Profile 0), yuv420p(tv, bt709), 1080x1080, SAR 1:1 DAR 1:1, 25 fps, 25 tbr, 1k tbn, 1k tbc (default)
    Metadata:
      DURATION        : 00:03:19.280000000
  Stream #0:1(eng): Audio: opus, 48000 Hz, stereo, fltp (default)
    Metadata:
      DURATION        : 00:03:19.301000000
[NULL @ 0x557e0dc34440] Unable to find a suitable output format for '/var/www/html/converted/test.dfpwm'
/var/www/html/converted/test.dfpwm: Invalid argument


    


    Same command works fine on my windows PC but I'm trying to move project to ubuntu server.

    


  • Node-JS convert mp4 to m3u8 with FFMPEG : Unable to find a suitable output format for 'v:1,a:1"'

    18 mars 2021, par Jérémy Gachon

    I am writing a server-side function to convert a mp4 file to m3u8, but there is an error with the differents video size. I want to have my video in differents sizes (4k UHD, 2k, 1080p, 720p...) but, with this line : "-var_stream_map", "'v:0,a:0 v:1,a:1'",, there is an error :

    


    


    [NULL @ 0x7fe9de00d800] Unable to find a suitable output format for 'v:1,a:1"'
v:1,a:1" : Invalid argument

    


    


    When I delete this line, all work, but I have just the v0 in 640x360 and not the v1 (960x540).

    


    How can I bypass this error to have all the video sizes ?

    


    const ffmpeg = require('fluent-ffmpeg');
var infs = new ffmpeg

infs.addInput(doc.data().url).outputOptions([
            '-preset slow', '-g 48', '-sc_threshold 0',
            '-map 0:0', '-map 0:1', '-map 0:0', '-map 0:1',
            '-s:v:0 640x360', '-c:v:0 libx264', '-b:v:0 365k',
            '-s:v:1 960x540', '-c:v:1 libx264', '-b:v:1 2000k',
            "-var_stream_map", "'v:0,a:0 v:1,a:1'",
            '-master_pl_name master.m3u8',
            '-f hls', '-hls_time 6', '-hls_list_size 0',
            '-hls_segment_filename fileSequence%d|v%v.ts',
            '-max_muxing_queue_size 1024',
        ]).output('./video.m3u8')
            .on('start', function (commandLine) {
                console.log('Spawned Ffmpeg with command: ' + commandLine);
            })
            .on('error', function (err, stdout, stderr) {
                console.log('An error occurred: ' + err.message, err, stderr);
            })
            .on('progress', function (progress) {
                console.log('Processing: ' + progress.percent + '% done')
            })
            .on('end', function (err, stdout, stderr) {
                console.log('Finished processing!' /*, err, stdout, stderr*/)
            })
            .run() 


    


  • Where can I find high-quality videos for testing video processing ?

    15 novembre 2012, par Workman

    Aside from Big Buck Bunny, Sintel, and Elephant's Dream, what are other high-quality and free sources for high quality video ?

    I'm using these videos internally to test video transcoding options and am not public redistributing. Any suggestions for content that falls under this category ?