Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (40)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5516)

  • configure : select subordinate formats for HLS

    11 février 2023, par Gyan Doshi
    configure : select subordinate formats for HLS
    

    HLS segments may be MPEG-TS or fragmented MP4, so those (de)muxers are
    required for reading/writing HLS media segments.

    Fixes functionality with —disable-everything —enable-demuxer=hls
    — enable-muxer=hls

    • [DH] configure
  • lavf/utils : Respect default disposition when select the AVStream

    20 juin 2019, par Jun Zhao
    lavf/utils : Respect default disposition when select the AVStream
    

    Respect default disposition when select the AVStream

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/utils.c
  • How to manipulate audio volume in ffmpeg

    24 juin 2021, par JohnTerry

    I am working on a ffmpeg command to overlay background music to a video which already has audio.

    &#xA;

    below is the command -

    &#xA;

        ffmpeg -i video_with_audio.webm -stream_loop -1 -i overlay_music.mp3 -vcodec copy -filter_complex amix -acodec libopus -mapping_family 0 -b:a 96k -shortest -map 0:v:0 -map 1:a:0 output_video.webm&#xA;

    &#xA;

    the above command is working fine but i also want to control the volume of the both audios.&#xA;so for this purpose i am using the command-

    &#xA;

        cmd = "ffmpeg -i {} -filter_complex &#x27;amovie=&#x27;{}&#x27;:loop=0,asetpts=N/SR/TB,volume=1[audio];[0:a]volume=3[sa];[sa][audio]amix[fa]&#x27; -map 0:v -map [fa] -vcodec copy -acodec libopus -preset ultrafast -shortest {}".format(inp_video, bg, out_video)&#xA;    os.system(cmd)&#xA;

    &#xA;

    but i am getting an error while passing online url-

    &#xA;

      ffmpeg version n4.3.1 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04)&#xA;  configuration: --prefix= --prefix=/usr --disable-debug --disable-doc --disable-static --enable-cuda --enable-cuda-sdk --enable-cuvid --enable-libdrm --enable-ffplay --enable-gnutls --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfontconfig --enable-libfreetype --enable-libmp3lame --enable-libnpp --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopus --enable-libpulse --enable-sdl2 --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxvid --enable-nonfree --enable-nvenc --enable-omx --enable-openal --enable-opencl --enable-runtime-cpudetect --enable-shared --enable-vaapi --enable-vdpau --enable-version3 --enable-xlib&#xA;  libavutil      56. 51.100 / 56. 51.100&#xA;  libavcodec     58. 91.100 / 58. 91.100&#xA;  libavformat    58. 45.100 / 58. 45.100&#xA;  libavdevice    58. 10.100 / 58. 10.100&#xA;  libavfilter     7. 85.100 /  7. 85.100&#xA;  libswscale      5.  7.100 /  5.  7.100&#xA;  libswresample   3.  7.100 /  3.  7.100&#xA;  libpostproc    55.  7.100 / 55.  7.100&#xA;Input #0, matroska,webm, from &#x27;/home/abc/Desktop/abc/input_video.webm&#x27;:&#xA;  Metadata:&#xA;    COMPATIBLE_BRANDS: isomiso2avc1mp41&#xA;    MAJOR_BRAND     : isom&#xA;    MINOR_VERSION   : 512&#xA;    ENCODER         : Lavf58.45.100&#xA;  Duration: 00:03:52.07, start: -0.007000, bitrate: 1179 kb/s&#xA;    Stream #0:0: Video: vp9 (Profile 0), yuv420p(tv), 854x480, SAR 1:1 DAR 427:240, 25 fps, 25 tbr, 1k tbn, 1k tbc (default)&#xA;    Metadata:&#xA;      HANDLER_NAME    : ISO Media file produced by Google Inc.&#xA;      ENCODER         : Lavc58.91.100 libvpx-vp9&#xA;      DURATION        : 00:03:52.007000000&#xA;    Stream #0:1: Audio: opus, 48000 Hz, stereo, fltp (default)&#xA;    Metadata:&#xA;      HANDLER_NAME    : ISO Media file produced by Google Inc.&#xA;      ENCODER         : Lavc58.91.100 libopus&#xA;      DURATION        : 00:03:52.068000000&#xA;[Parsed_amovie_0 @ 0x56189e8f9900] Failed to avformat_open_input &#x27;https&#x27;&#xA;[AVFilterGraph @ 0x56189e947e00] Error initializing filter &#x27;amovie&#x27; with args &#x27;https://dapi.videowiki.pt/media/music-lib/2021/04/05/31/21/bensound-creativeminds.mp3:loop=0&#x27;&#xA;Error initializing complex filters.&#xA;No such file or directory&#xA;

    &#xA;