diff --git a/_data/navigation.json b/_data/navigation.json index 39dc5e1..8c7871d 100644 --- a/_data/navigation.json +++ b/_data/navigation.json @@ -23,21 +23,26 @@ "project": { "name": "Projects", "entries": { - "streamfx": { - "name": "StreamFX", - "url": "/projects/obs/streamfx/", - "blank": false + "obs-studio": { + "name": "OBS Studio", + "entries": { + "streamfx": { + "name": "StreamFX", + "url": "/projects/obs/streamfx/", + "blank": false + }, + "ocean-blue": { + "name": "Ocean Blue", + "url": "/projects/obs/ocean-blue/", + "blank": false + } + } }, "voicefx": { "name": "VoiceFX (for VST)", "url": "/projects/voicefx/", "blank": false }, - "obs-ocean-blue": { - "name": "Ocean Blue (for OBS Studio)", - "url": "/projects/obs/ocean-blue/", - "blank": false - }, "all": { "name": "All Projects", "url": "/projects/", @@ -53,10 +58,20 @@ "url": "guides/obs/high-quality-recording/", "blank": false }, - "streaming_nvenc": { - "name": "High Quality Streaming with NVENC (in OBS® Studio)", - "url": "guides/obs/high-quality-streaming-nvenc/", - "blank": false + "streaming": { + "name": "High Quality Streaming (in OBS® Studio)", + "entries": { + "streaming_nvenc": { + "name": "NVIDIA NVENC", + "url": "guides/obs/high-quality-streaming/nvenc/", + "blank": false + }, + "streaming_qsv": { + "name": "Intel QSV", + "url": "guides/obs/high-quality-streaming/qsv/", + "blank": false + } + } }, "lost_knowledge": { "name": "Lost Knowledge & Secrets", diff --git a/_guides/obs/high-quality-streaming/qsv.html b/_guides/obs/high-quality-streaming/qsv.html new file mode 100644 index 0000000..79ae4dc --- /dev/null +++ b/_guides/obs/high-quality-streaming/qsv.html @@ -0,0 +1,39 @@ +--- +layout: default +category: "OBS" +title: "High Quality Streaming with Intel® QSV (in OBS® Studio)" +comments: true +--- + +{% capture content %}A new contender in the high quality streaming field has appeared: Intel! Their current generation of encoder hardware is capable of matching (and sometimes exceeding) the fast preset in x264, while exceeding real-time speeds at that quality. This makes Intel a good alternative to NVIDIA Turing/Ampere GPUs for budget builds, and as such makes Dual-PC streaming far more affordable.{% endcapture %}{% include blocks/paragraph.liquid content=content %} + +{% include blocks/heading.liquid level=1 content="Setting up QuickSync (for Streaming)" %} + +{% capture content %}At the moment, the only Intel encoder available is the built-in QuickSync H.264 encoder maintained by Intel and the OBS Project team. Using the FFmpeg variant does not improve quality, so it is enough to use the built-in encoder for streaming. Simply select QuickSync H.264 and apply the settings shown below.{% endcapture %}{% include blocks/paragraph.liquid content=content %} + +{% capture content %} + + GPU + UHD Graphics 730, 750, 770 + + + Target Usage + veryslow + + + Profile + high + + + Rate Control + LA_CBR + + + Latency + normal + + + B Frames + 3 + +{% endcapture %}{% include blocks/table.liquid content=content caption="Ideal settings" %} \ No newline at end of file