Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Merge commit ’1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d’

    8 septembre 2014, par Michael Niedermayer
    Merge commit ’1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d’
    

    * commit ’1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d’ :
    Split off floating point AAN (I)DCT into separate components

    Conflicts :
    configure
    libavcodec/Makefile
    libavcodec/dct-test.c
    libavcodec/idctdsp.c

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/dct-test.c
    • [DH] libavcodec/fdctdsp.c
    • [DH] libavcodec/idctdsp.c
    • [DH] libavcodec/mpegvideo_enc.c
  • avcodec/ac3enc : Use common encode_frame function

    7 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Use common encode_frame function
    

    This is in preparation for sharing even more stuff
    common to the fixed and floating-point encoders.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/ac3enc_template.c
    • [DH] libavcodec/eac3enc.c
  • record Linux Wayland/DRM screen using ffmpeg's kmsgrab device with superimposed webcam

    7 février 2020, par nrdxp

    Setup is Linux, ffmpeg using kabylake iGPU.

    I am capturing a running sway instance using the kmsgrab device, which requires the use of a hardware backend to coherently process the image on my hardware. Only VA API fits this bill. I want to overlay the webcam in the bottom right corner during encoding. However, attempts at manipulating the filter graph to accomplish this have been unsuccessful. This is ultimately for Twitch/Tube stream.

    Right now, I am actually capturing the webcam to an sdl window, and simply recording the screen using separate instances of ffmpeg. This doesn’t actually solve my problem since the window is easily disguised by workspace switching or other windows.

    This is the workaround :

    #!/usr/bin/env zsh

    # record webcam and open it in sdl window
    ffmpeg -v quiet -hide_banner \
     -re -video_size 640X480 -hwaccel vaapi -vaapi_device /dev/dri/renderD128 -i /dev/video0 \
     -vf 'format=nv12,hwupload' -c:v hevc_vaapi -f hevc - \
     | ffmpeg -v quiet -i - -f sdl2 - &amp;

    # wait for webcam window to open
    until swaymsg -t get_tree | grep 'pipe:' &amp;>/dev/null; do
     sleep 0.5
    done

    # position webcam in the bottom right corner of screen using sway
    swaymsg floating enable
    swaymsg resize set width 320 height 240
    swaymsg move position 1580 795
    swaymsg focus tiling

    #screencast
    ffmpeg -format bgra -framerate 60 -f kmsgrab -thread_queue_size 1024 -i - \
     -f alsa -ac 2 -thread_queue_size 1024 -i hw:0 \
     -vf 'hwmap=derive_device=vaapi,scale_vaapi=w=1920:h=1080:format=nv12' \
     -c:v h264_vaapi -g 120 -b:v 3M -maxrate 3M -pix_fmt vaapi_vld -c:a aac -ab 96k -threads $(nproc) \
     output.mkv

    kill %1