Recherche avancée

Médias (91)

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les sons

    15 mai 2013, par
  • 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 (5129)

  • avfilter/af_biquads : add option for block based linear phase processing

    8 mai 2022, par Paul B Mahol
    avfilter/af_biquads : add option for block based linear phase processing
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_biquads.c
  • avcodec : Add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM to most h263 based codecs

    22 décembre 2016, par Michael Niedermayer
    avcodec : Add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM to most h263 based codecs
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/flvdec.c
    • [DH] libavcodec/h263dec.c
    • [DH] libavcodec/intelh263dec.c
    • [DH] libavcodec/mpeg4videodec.c
    • [DH] libavcodec/msmpeg4dec.c
  • How to use Intel QSV record screen based on ffmpeg

    18 octobre 2020, par zonda

    I want to record my screen with ffmpeg.
    &#xA;I succeeded in the normal way.
    &#xA;ffmpeg -f gdigrab -framerate 30 -draw_mouse 1 -i desktop -c:v h264 -r 30 -preset ultrafast -tune zerolatency -pix_fmt yuv420p "record.mp4"

    &#xA;&#xA;

    But I want use GPU record my screen now.
    &#xA;I'm trying to use Intel QSV on ffmpeg.
    &#xA;ffmpeg -f gdigrab -framerate 30 -draw_mouse 1 -i desktop -c:v h264_qsv -r 30 -tune zerolatency -pix_fmt yuv420p "record.mp4"

    &#xA;&#xA;

    It does not work and show :
    &#xA;[h264_qsv @ 0000000000479080] Error initializing the encoder: invalid video parameters (-15)&#xA;Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height&#xA;&#xA;I don't know what happened.

    &#xA;&#xA;

    And I'm trying simple way.
    &#xA;ffmpeg -i test_input.mp4 -c:v h264_qsv -preset:v faster test_output.mp4
    &#xA;It does not work too.

    &#xA;&#xA;

    My computer information :
    &#xA;acer notebook : TravelMate P243-MG
    &#xA;OS : windows 7 64bits
    &#xA;CPU : Intel i5-3210M
    &#xA;Graphics card : Nvidia GT-630M

    &#xA;&#xA;

    Thanks in advance !

    &#xA;