Giter Site home page Giter Site logo

ffmpeg_qsv_cuda's Introduction

ffmpeg_qsv_cuda

windows:

1.Install msys2 from www.msys2.org.

2.Clone ffnvcodec

git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git

  1. Clone FFmpeg's public GIT repository.

git clone https://git.ffmpeg.org/ffmpeg.git

4.Create a folder named nv_sdk in the parent directory of FFmpeg and copy all the header files from C:\Program Files\NVIDIA GPU Computing

Toolkit\CUDA\v8.0\include and library files from C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\lib\x64 to nv_sdk folder.

5.Launch the Visual Studio x64 Native Tools Command Prompt.

  1. From the Visual Studio x64 Native Tools Command Prompt, launch the MinGW64 environment by running mingw64.exe from the msys2 installation folder.

  2. In the MinGW64 environment, install the necessary packages.

pacman -S diffutils make pkg-config yasm

  1. Add the following paths by running the commands.

export PATH="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin":$PATH

export PATH="/c/Program Files (x86)/Microsoft Visual Studio/2019/Preview/VC/Tools/MSVC/14.20.27607/bin/Hostx64/x64":$PATH

export PATH="/c/Program Files (x86)/IntelSWTools/Intel(R) Media SDK 2018 R2/Software Development Kit/bin/x64":$PATH

  1. Goto nv-codec-headers directory and install ffnvcodec

make install PREFIX=/usr

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:$PKG_CONFIG_PATH 10. //export PKG_CONFIG_PATH=/z/ffmpeg_project/mfx_dispatch/build/lib/pkgconfig:$PKG_CONFIG_PATH //unset PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

./configure --enable-nonfree --disable-shared --enable-cuda-nvcc --toolchain=msvc --enable-libnpp --enable-libmfx --arch=x86_64 --extra-cflags="-I../nv_sdk/include -I../intel_sdk/include" --extra-ldflags="-libpath:../nv_sdk/lib/x64 -libpath:../intel_sdk/lib/x64" --prefix=./build --enable-gpl

11.make -j4 erro: 其中的报错: 1.c++ 常量中有换行符

fftools/ffprobe.c(3047): error C2001: 常量中有换行符

我就把这一行ffprobe.c的3047行打印字符给注释了,两处代码:

//av_log(NULL, level, "%sbuilt with %s\n", indent, CC_IDENT);

//print_str("compiler_ident", CC_IDENT);

还有如下报错:也是因为CC_IDENT引起的,解决方法就是上面注释

fftools/cmdutils.c(1119): error C2065: “slib”: 未声明的标识符 fftools/cmdutils.c(1119): error C2296: “%”: 非法,左操作数包含“char [138]”类型 fftools/cmdutils.c(1119): error C2059: 语法错误:“数字上的错误后缀” fftools/cmdutils.c(1119): error C2059: 语法错误:“%” fftools/cmdutils.c(1119): error C2017: 非法的转义序列 fftools/cmdutils.c(1119): error C2001: 常量中有换行符 fftools/cmdutils.c(1150): error C2143: 语法错误: 缺少“)”(在“”的前面) fftools/cmdutils.c(1150): error C2143: 语法错误: 缺少“{”(在“”的前面) fftools/cmdutils.c(1150): error C2059: 语法错误:“)” fftools/cmdutils.c(1151): error C2054: 在“options”之后应输入“(” fftools/cmdutils.c(1252): error C2143: 语法错误: 缺少“)”(在“”的前面) fftools/cmdutils.c(1252): error C2143: 语法错误: 缺少“{”(在“”的前面) fftools/cmdutils.c(1252): error C2059: 语法错误:“)” fftools/cmdutils.c(1253): error C2054: 在“avclass”之后应输入“(” fftools/cmdutils.c(1261): error C2275: “AVInputFormat”: 将此类型用作表达式非法

ffmpeg.exe -rtbufsize 1G -init_hw_device qsv=hw -filter_hw_device hw -f dshow -i video="TBS 6314 HDMI Video Input0" -video_device_number 0 -vf 'hwupload=extra_hw_frames=64,format=qsv,scale_qsv=w=1280:h=720,vpp_qsv=deinterlace=2:framerate=30' -c:v h264_qsv -f rtp_mpegts rtp://127.0.0.1:4567

cuda: ffmpeg.exe -y -vsync 0 -init_hw_device cuda=foo:bar -filter_hw_device foo -f dshow -i video="TBS 6314 HDMI Video Input0" -vf 'hwupload,scale_cuda=1280:720' -c:a copy -c:v h264_nvenc -b:v 5M -f rtp_mpegts rtp://127.0.0.1:4567

./ffmpeg.exe -y -vsync 0 -hwaccel cuvid –resize 1280x720 -c:v h264_cuvid -i Z:\video\test\chun2.mp4 -c:a copy -c:v h264_nvenc -b:v 5M output.mp4

x264 : ffmpeg.exe -i 4.mp4 -s 1920x1080 -aspect 16:9 -c:v libx264 -profile:v high -x264opts "level=4.2:bitrate=8000:vbv-maxrate=8000:vbv-bufsize=8000:nal_hrd=cbr" -c:a aac -ar 48000 -b:a 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 9M -keyint_min 50 -g 50 -sc_threshold 0 -bf 1 -b_strategy 0 11.ts

ffmpeg.exe -i 4.mp4 -s 1920x1080 -aspect 16:9 -c:v libx264 -profile:v high -x264opts "level=4.2:bitrate=8000:vbv-maxrate=8000:vbv-bufsize=8000:nal_hrd=cbr" -c:a aac -ar 48000 -b:a 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 9M 11.ts

ffmpeg.exe -rtbufsize 1G -init_hw_device qsv=hw -filter_hw_device hw -f dshow -i video="TBS 6314 HDMI Video Input0" -video_device_number 0 -vf 'hwupload=extra_hw_frames=64,format=qsv,scale_qsv=w=1280:h=720,vpp_qsv=deinterlace=2:framerate=30' -c:v h264_qsv -f rtp_mpegts rtp://127.0.0.1:4567

other: qsv: ffmpeg.exe -rtbufsize 1G -init_hw_device qsv=hw -filter_hw_device hw -i Z:\video\test\chun1.mp4 -aspect 16:9 -vf 'hwupload=extra_hw_frames=64,format=qsv,scale_qsv=w=1920:h=1080' -c:v h264_qsv -preset veryslow -profile:v high -b:v 8000k -minrate 8000k -maxrate 8000k -c:a aac -ar 48000 -b:a 256k -minrate 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 9M 11.ts

cuda: ./ffmpeg.exe -y -vsync 0 -hwaccel cuvid -c:v h264_cuvid -i Z:\video\test\chun2.mp4 -aspect 16:9 -vf 'scale_cuda=1920:1080' -c:v h264_nvenc -preset slow -profile:v high -level 4.2 -rc cbr_hq -cbr true -b:v 7300k -minrate 7300k -maxrate 7300k -c:a aac -ar 48000 -b:a 256k -minrate 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 8000k 22.ts

./ffmpeg.exe -y -vsync 0 -hwaccel cuvid -c:v h264_cuvid –resize 1920x1080 -i Z:\video\test\chun2.mp4 -aspect 16:9 -c:v h264_nvenc -preset slow -profile:v high -level 4.2 -rc cbr_hq -cbr true -b:v 7300k -minrate 7300k -maxrate 7300k -c:a aac -ar 48000 -b:a 256k -minrate 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 8000k 22.ts

./ffmpeg.exe -y -vsync 0 -init_hw_device cuda=foo:bar -filter_hw_device foo -i Z:\video\test\chun2.mp4 -s 1920x1080 -aspect 16:9 -vf 'hwupload' -c:v h264_nvenc -preset slow -profile:v high -level 4.2 -rc cbr_hq -cbr true -b:v 7300k -minrate 7300k -maxrate 7300k -c:a aac -ar 48000 -b:a 256k -minrate 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 8000k 33.ts

./ffmpeg.exe -y -vsync 0 -init_hw_device cuda=foo:bar -filter_hw_device foo -resize 1920x1080 -i Z:\video\test\chun2.mp4 -aspect 16:9 -vf 'hwupload' -c:v h264_nvenc -preset slow -profile:v high -level 4.2 -rc cbr_hq -cbr true -b:v 7300k -minrate 7300k -maxrate 7300k -c:a aac -ar 48000 -b:a 256k -minrate 256k -maxrate 256k -f mpegts -fflags autobsf -muxrate 8000k 33.ts

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.