Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (78)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (8423)

  • My discord.py music bot fails with "ffmpeg not found"

    17 avril 2022, par ThatNoClueDude

    I am using repl.it to host my Discord.py music bot
It fails with an error saying "ffmpeg is not found"
I used multiple ways to fix the error

    


    npm install ffmpeg-static in shell is my first way how i tried to fix the problem, but it did not do anything.

    


    Even if i do any way, repl.it will still give the error ffmpeg not found.
Can someone please tell any way to fix this issue ??

    


  • ffmpeg - background music to video with sount

    25 août 2016, par Nir Diamant

    Hey im trying to add background music(mp3 file) to video that contain sounds(mpg file).

    im using the next code to do it :

    ffmpeg -i input.mpg -i bgmusic.mp3 -c:v copy  -filter_
    complex \"[0:a]aformat = fltp:44100:stereo,apad[0a];[1]aformat=fltp:44100:stereo
    ,volume=0.1[1a];[0a][1a]amerge[a]\" -map 0:v -map \"[a]\" -ac 2 -t 14 finaloutpu
    t2.mpg

    but i get the next error message :

    [AVFilterGraph @ 000000000050bd80] No such filter: '"'
    Error initializing complex filters.
    Invalid argument

    here is the all console log :

    ffmpeg version N-78949-g6f5048f Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 5.3.0 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-a
    isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --ena
    le-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca -
    enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-
    ibilbc --enable-libmodplug --enable-libmfx --enable-libmp3lame --enable-libopen
    ore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --en
    ble-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enabl
    -libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --en
    ble-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-lib
    264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enabl
    -lzma --enable-decklink --enable-zlib
     libavutil      55. 19.100 / 55. 19.100
     libavcodec     57. 27.101 / 57. 27.101
     libavformat    57. 28.100 / 57. 28.100
     libavdevice    57.  0.101 / 57.  0.101
     libavfilter     6. 39.100 /  6. 39.100
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
     libpostproc    54.  0.100 / 54.  0.100
    Input #0, mpeg, from 'finaloutput1.mpg':
     Duration: 00:00:16.13, start: 0.540000, bitrate: 28775 kb/s
       Stream #0:0[0x1e0]: Video: mpeg2video (Main), yuv420p(tv), 1920x1080 [SAR 1
    1 DAR 16:9], max. 104857 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc
    [mp3 @ 0000000002a99020] Skipping 0 bytes of junk at 253.
    Input #1, mp3, from 'bgmusic.mp3':
     Metadata:
       encoder         : Lavf57.28.100
     Duration: 00:00:37.04, start: 0.025057, bitrate: 128 kb/s
       Stream #1:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s
       Metadata:
         encoder         : Lavc57.27
    [AVFilterGraph @ 000000000050bd80] No such filter: '"'
    Error initializing complex filters.
    Invalid argument

    please help.

  • Extract music metadata (music title, album title, artist name...) using react-player

    6 juin 2022, par Pierogi

    I'm building a simple web app that plays music streams.
    
The constitution of the web app is

    


    audio.m4a -> ffmpeg -> nginx + rtmp module -> frontend browser

    


    In the frontend browser, use react-player.
    
The audio data is published as HLS audio data.

    


    So, I want to extract the metadata(music title, album title, artist name ...) from the data and display it in the browser. However, I could not find the way to that.
    
Anyone who knows this ?