Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (110)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • How to extract part of audio using youtube-dl ?

    2 janvier 2019, par Vishesh Sharma

    I am using windows 10 and I would like to know how to extract part of the audio from youtube videos using the cmd.

  • FFMPEG stop live stream to Youtube

    12 janvier 2021, par Louis Hudson

    I have a problem...FFMPEG starts live streaming at Youtube live and arround 20 to 40 seconds it stop to recording.
My terminal print :

    


    


    Delay between the first packet and last packet in the muxing queue
is 10008000 > 10000000 : forcing output

    


    


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