Recherche avancée

Médias (91)

Autres articles (105)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (11875)

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