Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (111)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (12514)

  • configure : select mdct & sinewin for atrac3pal decoder

    5 novembre 2019, par Lou Logan
    configure : select mdct & sinewin for atrac3pal decoder
    

    Signed-off-by : Lou Logan <lou@lrcd.com>

    • [DH] configure
  • lavd/opengl : select the GL context before drawing

    12 juillet 2023, par Nicolas George
    lavd/opengl : select the GL context before drawing
    

    Since “2d924b3a63 fftools/ffmpeg : move each muxer to a separate thread”,
    opengl_write_packet() is called from a different thread than
    opengl_write_header() and would nothing for lack of a selected context.

    • [DH] libavdevice/opengl_enc.c
  • Volume adjust and channel merge on video using FFMPEG

    6 novembre 2015, par user1566352

    I’m trying to convert a recorded AVI (1 video stream, 2 audio streams[1st is stereo, 2nd is mono]) video file to H264/AAC.

    I want the second audio stream to be at 60% volume and the first at 100%.

    I also want to merge the first and second audio stream.

    Output should be H264 with AAC audio.

    The command I tried to use is :

    "ffmpeg.exe"
     -i "input.avi"
     -filter_complex "
       [0:a:0]aformat=channel_layouts=stereo,volume=1.0[a1];
       [0:a:1]aformat=channel_layouts=mono,volume=0.6[a2];
       [a1][a2]amerge,pan=stereo|c0code>

    But I get the error :
    [AVFilterGraph @ 0000000ceb630c00] The following filters could not choose their formats : Parsed_amerge_4
    Consider inserting the (a)format filter near their input or output.
    Error configuring complex filters.
    Error number -5 occurred

    What am I doing wrong and how can it be fixed ?

    Complete Console Log :

    ffmpeg version N-76456-g6df2c94 Copyright (c) 2000-2015 the FFmpeg developers
     built with gcc 5.2.0 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
     libavutil      55.  5.100 / 55.  5.100
     libavcodec     57. 14.100 / 57. 14.100
     libavformat    57. 14.100 / 57. 14.100
     libavdevice    57.  0.100 / 57.  0.100
     libavfilter     6. 14.101 /  6. 14.101
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.100 /  2.  0.100
     libpostproc    54.  0.100 / 54.  0.100
    [avi @ 000000b1cfa6bc20] non-interleaved AVI
    Guessed Channel Layout for  Input Stream #0.1 : stereo
    Guessed Channel Layout for  Input Stream #0.2 : mono
    Input #0, avi, from 'input.avi':
     Metadata:
       encoder         : DxtoryCore ver2.0.0.122
       ISRC            : Video:Lagarith Lossless Codec Audio0:Lautsprecher (2- USB Audio CODEC ) Audio1:Mikrofon (2- USB Audio CODEC )
     Duration: 00:27:55.60, start: 0.000000, bitrate: 181780 kb/s
       Stream #0:0: Video: lagarith (LAGS / 0x5347414C), rgb24, 1920x1017, 179663 kb/s, 30 fps, 30 tbr, 30 tbn, 30 tbc
       Stream #0:1: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s
       Stream #0:2: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 1 channels, s16, 705 kb/s
    [Parsed_amerge_4 @ 000000b1cfaf3200] No channel layout for input 1
    Last message repeated 1 times
    [AVFilterGraph @ 000000b1cfa70c00] The following filters could not choose their formats: Parsed_amerge_4
    Consider inserting the (a)format filter near their input or output.
    Error configuring complex filters.
    Error number -5 occurred