NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Docker amd64 v
1 2 3 4 5 … 9 Next »
No nvenc option

 
  • 0 Vote(s) - 0 Average
No nvenc option
javaqueen
Offline

Junior Member

united states
Posts: 6
Threads: 1
Joined: Jan 2026
#1
2026-01-17, 05:19 PM
Hey Im new to the forums here  so please forgive my formatting. 
  
 image: Nextpvr/nextpvr_amd64Confusedtable 

  There appears to be no option in the settings menu to choose nvenc ?  only "vaapi" and "cpu" is present and this causes issues with some of my streams.
  i probed ffmpeg inside the container and this is the output ....

docker exec -it tv-frontend bash
root@ee238cb68e37:/app# ffmpeg -encoders | grep nvenc
ffmpeg version 5.1.6-0+deb12u1 Copyright © 2000-2024 the FFmpeg developers
built with gcc 12 (Debian 12.2.0-14)
configuration: --prefix=/usr --extra-version=0+deb12u1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librist --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --disable-sndio --enable-libjxl --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-libplacebo --enable-librav1e --enable-shared
libavutil 57. 28.100 / 57. 28.100
libavcodec 59. 37.100 / 59. 37.100
libavformat 59. 27.100 / 59. 27.100
libavdevice 59. 7.100 / 59. 7.100
libavfilter 8. 44.100 / 8. 44.100
libswscale 6. 7.100 / 6. 7.100
libswresample 4. 7.100 / 4. 7.100
libpostproc 56. 6.100 / 56. 6.100
V....D h264_nvenc NVIDIA NVENC H.264 encoder (codec h264)
V....D hevc_nvenc NVIDIA NVENC hevc encoder (codec hevc)
root@ee238cb68e37:/app# exit


I also tried to delete the container adding "--gpus all"   nvidia to runtime and -e variables   NVIDIA_VISIBLE_DEVICES=all
NVIDIA_DRIVER_CAPABILITIES=compute,video,utility.  

Im kind of at a loss and I Dont know what else to do .
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 54,649
Threads: 977
Joined: May 2006
#2
2026-01-17, 05:23 PM
As I pointed out on your GitHub post you need to tell use what kernel drivers and packages need to be installed on Docker to make it work and then tell use the custom override for ffmpeg to use nvenc.

Martin
javaqueen
Offline

Junior Member

united states
Posts: 6
Threads: 1
Joined: Jan 2026
#3
2026-01-17, 05:33 PM
(2026-01-17, 05:23 PM)mvallevand Wrote: As I pointed out on your GitHub post you need to tell use what kernel drivers and packages need to be installed on Docker to make it work and then tell use the custom override for ffmpeg to use nvenc.

Martin

yeah I dont understand , you're asking me to tell you what needs to be done but im asking for assistance.  Does my post not confirm that nvenc ,  nvidia runtime , drivers or libraries are present ? or am I misunderstanding  you?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 54,649
Threads: 977
Joined: May 2006
#4
2026-01-17, 05:44 PM (This post was last modified: 2026-01-17, 05:45 PM by mvallevand.)
No all your post confirms is that ffmpeg was compiled with nvenc support which we knew. Maybe try the suggestion for Emby https://emby.media/community/index.php?/...anscoding/

In the Docker shell first try with

sudo apt install nvidia-headless-525-server

then

sudo apt install libnvidia-decode-525-server libnvidia-encode-525-server

We leave it to you to figure out the ffmpeg command for transcoding and if you provide those to us we can give have a look. It could be as simple as changing default in this config.xml setting

<TranscodeHLS>default</TranscodeHLS>

to

Code:
-y [ANALYZE_DURATION] [SEEK] -i [SOURCE] -map_metadata -1 -threads 0 -ignore_unknown -map 0:v:0? -map 0:a:[AUDIO_STREAM] -map -0:s -codec:v:0 h264_nvenc [DEINTERLACING] -profile:v baseline -level 3.0 -look_ahead 0 -b:v [BITRATE] -maxrate [BITRATE] -bufsize [BUFSIZE] -vsync vfr -profile:v high -level 41  -s [RESOLUTION] [SUBTITLES] -flags -global_header -sc_threshold 0 -codec:a:0 [AUDIO_CODEC] -strict experimental -ac [AUDIO_CHANNELS] -ab [AUDIO_BITRATE] -af \"adelay=1,aresample=async=1\" -hls_time [SEGMENT_DURATION] -start_number 0 -hls_list_size [SEGMENT_COUNT] -y [TARGET]

The option is provide sub and I with NVIDIA cards.

Martin
javaqueen
Offline

Junior Member

united states
Posts: 6
Threads: 1
Joined: Jan 2026
#5
2026-01-17, 06:09 PM
nvidia headless server ? what ? why would i need that ? no other docker container has issues with the nvidia drivers from the host .. nvidia has official pass through https://developer.nvidia.com/container-runtime .
changing config.xml does not help. it automatically reverts the changes back. I believe this is an application level limitation. Thank you for the help, I think ill wait to play around with this until the app is fixed . Have a great day Thanks again
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 54,649
Threads: 977
Joined: May 2006
#6
2026-01-17, 07:23 PM (This post was last modified: 2026-01-17, 09:42 PM by mvallevand.)
The app is fine you don't understand Docker.  It simply Debian with the components required to run NextPVR. The user in the post I referred you to understood that. The author of NextPVR (sub) uses the Docker with dotnet but you are real to experiment with the Docker of your choice

Bottom line without user feedback don't expect hardware decoding in sub's Docker.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 107,355
Threads: 774
Joined: Nov 2003
#7
Yesterday, 12:14 AM
(2026-01-17, 05:33 PM)javaqueen Wrote: yeah I dont understand , you're asking me to tell you what needs to be done but im asking for assistance.  Does my post not confirm that nvenc ,  nvidia runtime , drivers or libraries are present ? or am I misunderstanding  you?
javaqueen, I don't have an environment where I can test that setup. As Martin suggested, if you're able to do some experimenting, and let us know what packages need to be added to the container to make nvenc available, I'm happy to update the official containers to include these extra bits.

gemini seems to be suggesting it'd need the libnvidia-encode1 package added. I have no way to confirm that myself.
javaqueen
Offline

Junior Member

united states
Posts: 6
Threads: 1
Joined: Jan 2026
#8
Yesterday, 04:46 AM
(Yesterday, 12:14 AM)sub Wrote:
(2026-01-17, 05:33 PM)javaqueen Wrote: yeah I dont understand , you're asking me to tell you what needs to be done but im asking for assistance.  Does my post not confirm that nvenc ,  nvidia runtime , drivers or libraries are present ? or am I misunderstanding  you?
javaqueen, I don't have an environment where I can test that setup. As Martin suggested, if you're able to do some experimenting, and let us know what packages need to be added to the container to make nvenc available, I'm happy to update the official containers to include these extra bits.

gemini seems to be suggesting it'd need the libnvidia-encode1 package added. I have no way to confirm that myself.


No packages needed .... i did the testing ... i can run the transcodes manually and put them in file .. i changed configs to this for further testing ( keep in mind there is no option to select nvenc in your menu options)  :  

#----------------------------------------------
<TranscodeHLS>default</TranscodeHLS>
    <AnalyzeDuration>default</AnalyzeDuration>
    <VideoEncoder>h264_nvenc</VideoEncoder>
    <TranscodeArgs>-y [ANALYZE_DURATION] [SEEK] -i [SOURCE] -map_metadata -1 -threads 0 -ignore_unknown \
-map 0:v:0? -map 0:a:[AUDIO_STREAM] -map -0Confused \
-codec:v:0 h264_nvenc [DEINTERLACING] -profile:v high -level 4.1 \
-b:v [BITRATE] -maxrate [BITRATE] -bufsize [BUFSIZE] \
-vsync vfr -s [RESOLUTION] [SUBTITLES] \
-flags -global_header -sc_threshold 0 \
-codec:a:0 [AUDIO_CODEC] -ac [AUDIO_CHANNELS] -ab [AUDIO_BITRATE] \
-hls_time [SEGMENT_DURATION] -start_number 0 -hls_list_size [SEGMENT_COUNT] -y [TARGET]</TranscodeArgs>  

#-----------------------------

TheDebug log seems to say that nextpvr is trying to parse the local url into ffmpeg instead of the source url so it errors out .

 heres the log :

 #-----------------


2026-01-18 04:24:56.782 [DEBUG][9]   client_local: true
2026-01-18 04:24:56.782 [DEBUG][9]   user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:146.0) Gecko/20100101 Firefox/146.0
2026-01-18 04:24:56.782 [DEBUG][9]   host_callback: ...
2026-01-18 04:24:56.782 [DEBUG][9] GetStatus() got transcoder
2026-01-18 04:24:56.782 [DEBUG][9] GetStatus()@2
2026-01-18 04:24:56.782 [DEBUG][9] GetStatus()@3
2026-01-18 04:24:56.782 [DEBUG][9] GetStatus()@exit
2026-01-18 04:24:56.782 [DEBUG][9] {"status": "Starting Device. Please Wait...","final": false,"speed": 1,"duration": 0,"percentage": 0}
2026-01-18 04:24:57.071 [DEBUG][10] StopStream(1376264)...
2026-01-18 04:24:57.071 [DEBUG][10] clientHandle[36517978-767b-4350-87ee-fa11336443e8] = 1376264
2026-01-18 04:24:57.071 [DEBUG][10] Calling StopStream()
2026-01-18 04:24:57.071 [DEBUG][10] StopStream@1
2026-01-18 04:24:57.071 [DEBUG][10] Stopping m3u8 stream (http://192.168.50.175:8409/.../5.m3u8?....  [cONQFFZLp46Inln7EUESeq/PwQFvXCRygSjBq9AkSZMTZ5gztsAzTjmi1ReYdHaS05lYRhg2lWSKfVw54hL1R0tn6/CQovGKehtCs/SdnLQJd9x8SrNmCMpABHI1PUFbj9mDFtlH4l0afK9sAb4Y+CZXWEiH9C9xfn90GZCDikscFqWqK7WDaM6aWjkeQidhhNZnkwr7FiCQS4EqzBN7M+E/rI2KiYAU1xCnIrOsiyfwM2sISki6N6fMCb7LFcy2Bct3o6DaSAKmaEKQpNAIWNFz76i6IWQ9PeSXVHsKr75/yDm+lMjCXuIok4p9ZtrWhRLyNlWw4cDclXTB5Q0cw41rMLOVmpqigP+vakAo2TYsQsLZVYfh0zdKSQalHHYJlLbRl0OeWbZEEo0yZH3RprH0JQHDziwO8vPtHsiM8dDkWGbxYAWOXOUhQP+NOK4I])
2026-01-18 04:24:57.071 [DEBUG][10] Cancelling pending requests
2026-01-18 04:24:57.071 [DEBUG][10] StopStream@2
2026-01-18 04:24:57.071 [DEBUG][10] StopStream@3
2026-01-18 04:24:57.071 [DEBUG][10] StopStream handle: 8
2026-01-18 04:24:57.071 [DEBUG][10] Closing TSWriter....: LIVE&/buffer/live-Nickelodeon test-1-8.ts
2026-01-18 04:24:57.071 [ERROR][10] writer.Close() did not complete in a timely fashion
2026-01-18 04:24:57.071 [DEBUG][10] Close@2
2026-01-18 04:24:57.071 [DEBUG][10] Closing mapAccessor
2026-01-18 04:24:57.072 [ERROR][109] Unexpected error processing m3u8 url (http://192.168.50.175:8409/.../5.m3u8?....  [uTviS6+1sj7BwvyheyA5wwwIoPTGKNO1fL3g1spRPs3GgtcnGR36Y9rIvUAD7JyBZ7E/3K+yLeFwqgMOPbqHeq2mLEq6qDGaXbfLE9MQagOiYcWv/S99Dq6WvQ/zOc/2TsNA1S+eeNlvY1fukhb1+goYdTeUo3UxlwsPSAYS/zRlfVbFAum8y5eIOnDin/Gcq44Q4IpupptC3Ip0/MxpIDmdUemKQfLntyWzImWLCASIiNRMGTpcCoe2TMLnwrQ4aMmKo8FPNfravuyumXsCS/RH84ImtE949e1IN+Gen9aH4mtSmg+5+xIP4XpwSbBAJqftdug5NlEBNylGxxpFToZgBABR6KmbsGFB9GxFiNfkCNuQGC8wjlnUK74iO9+Tey7NUVBozlABGr0ARYTHm9HwjicTA4exd3Foyb6uhxIE3WIZWGTnNGJXRE7DwEtX]): System.Threading.Tasks.TaskCanceledException: The operation was canceled.
---> System.IO.IOException: Unable to read data from the transport connection: Operation canceled.
---> System.Net.Sockets.SocketException (125): Operation canceled
 
2026-01-18 04:24:57.074 [DEBUG][10] Closing mapMMF
2026-01-18 04:24:57.074 [DEBUG][10] Closing mapFileStream
2026-01-18 04:24:57.074 [DEBUG][10] deleting /buffer/live-(redacted)-1-8.ts.map
2026-01-18 04:24:57.074 [DEBUG][10] Close@exit
2026-01-18 04:24:57.074 [DEBUG][10] StopStream@exit
2026-01-18 04:24:57.074 [DEBUG][10] StopStream@exit
2026-01-18 04:24:57.074 [DEBUG][10] StopStream() done
2026-01-18 04:24:57.074 [DEBUG][10] Cleaning up: /buffer/live-(redacted)-1-8.ts
2026-01-18 04:24:57.074 [DEBUG][9] [FFMPEG]: http://127.0.0.1:8866/live?channeloid=71...11336443e8: Invalid data found when processing input

#----------------------------------------Transcoding test cahnnel inside container

root@2d1e8356e77b:/app# ffmpeg -i "http://192.168.50.175:8409/iptv/channel/5.m3u8?mode=hls-direct" -c:v h264_nvenc -c:a aac -f mpegts test.ts
ffmpeg version 5.1.6-0+deb12u1 Copyright © 2000-2024 the FFmpeg developers
  built with gcc 12 (Debian 12.2.0-14)
  configuration: --prefix=/usr --extra-version=0+deb12u1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librist --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --disable-sndio --enable-libjxl --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-libplacebo --enable-librav1e --enable-shared
  libavutil      57. 28.100 / 57. 28.100
  libavcodec    59. 37.100 / 59. 37.100
  libavformat    59. 27.100 / 59. 27.100
  libavdevice    59.  7.100 / 59.  7.100
  libavfilter    8. 44.100 /  8. 44.100
  libswscale      6.  7.100 /  6.  7.100
  libswresample  4.  7.100 /  4.  7.100
  libpostproc    56.  6.100 / 56.  6.100
[hls @ 0x59774dbf1dc0] Skip ('#EXT-X-VERSION:3')
[hls @ 0x59774dbf1dc0] Skip ('#EXT-X-DISCONTINUITY')
[hls @ 0x59774dbf1dc0] Opening 'http://192.168.50.175:8409/iptv/hls-direct/5.ts?index=2' for reading
Input #0, hls, from 'http://192.168.50.175:8409/iptv/channel/5.m3u8?mode=hls-direct':
  Duration: N/A, start: 0.000000, bitrate: N/A
  Program 0
    Metadata:
      variant_bitrate : 0
  Stream #0:0: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 29.97 fps, 29.97 tbr, 90k tbn
    Metadata:
      variant_bitrate : 0
  Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp
    Metadata:
      variant_bitrate : 0
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> h264 (h264_nvenc))
  Stream #0:1 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
Output #0, mpegts, to 'test.ts':
  Metadata:
    encoder        : Lavf59.27.100
  Stream #0:0: Video: h264 (Main), yuv420p(progressive), 640x480 [SAR 1:1 DAR 4:3], q=2-31, 2000 kb/s, 29.97 fps, 90k tbn
    Metadata:
      variant_bitrate : 0
      encoder        : Lavc59.37.100 h264_nvenc
    Side data:
      cpb: bitrate max/min/avg: 0/0/2000000 buffer size: 4000000 vbv_delay: N/A
  Stream #0:1: Audio: aac (LC), 44100 Hz, stereo, fltp, 128 kb/s
    Metadata:
      variant_bitrate : 0
      encoder        : Lavc59.37.100 aac
frame= 2209 fps= 31 q=27.0 Lsize=  20646kB time=00:01:14.07 bitrate=2283.4kbits/s speed=1.04x   
video:18490kB audio:1166kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 5.039324%
[aac @ 0x59774dc58500] Qavg: 29375.480
Exiting normally, received signal 2.
javaqueen
Offline

Junior Member

united states
Posts: 6
Threads: 1
Joined: Jan 2026
#9
Yesterday, 04:54 AM
and here is a transcode using a file as the source and outputting to another file ( no errors hw accel works just cant use it in the app )
Verified hwaccel by using nvidia-smi on the host and watching the gpu /cpu processes ....

root@2d1e8356e77b:/app# ffmpeg -hwaccel cuda -i /recordings/spongebob.mkv -c:v h264_nvenc -b:v 2M /recordings/spongebob_nvenc.mkv
ffmpeg version 5.1.6-0+deb12u1 Copyright © 2000-2024 the FFmpeg developers
built with gcc 12 (Debian 12.2.0-14)
configuration: --prefix=/usr --extra-version=0+deb12u1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librist --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --disable-sndio --enable-libjxl --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-libplacebo --enable-librav1e --enable-shared
libavutil 57. 28.100 / 57. 28.100
libavcodec 59. 37.100 / 59. 37.100
libavformat 59. 27.100 / 59. 27.100
libavdevice 59. 7.100 / 59. 7.100
libavfilter 8. 44.100 / 8. 44.100
libswscale 6. 7.100 / 6. 7.100
libswresample 4. 7.100 / 4. 7.100
libpostproc 56. 6.100 / 56. 6.100
Input #0, matroska,webm, from '/recordings/spongebob.mkv':
Metadata:
creation_time : 2023-01-21T00:34:57.000000Z
ENCODER : Lavf59.27.100
Duration: 00:11:40.91, start: 0.000000, bitrate: 4713 kb/s
Stream #0:0: Video: h264 (High), yuv420p(tv, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn (default)
Metadata:
BPS : 4456551
NUMBER_OF_FRAMES: 33862
NUMBER_OF_BYTES : 786764035
_STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 32-bit
_STATISTICS_WRITING_DATE_UTC: 2023-01-21 00:34:57
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
DURATION : 00:11:40.908000000
Stream #0:1(ita): Audio: aac (LC), 48000 Hz, stereo, fltp (default)
Metadata:
title : Italian
BPS : 124938
NUMBER_OF_FRAMES: 66207
NUMBER_OF_BYTES : 22057738
_STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 32-bit
_STATISTICS_WRITING_DATE_UTC: 2023-01-21 00:34:57
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
DURATION : 00:11:40.714000000
Stream #0:2(eng): Audio: aac (LC), 48000 Hz, stereo, fltp
Metadata:
title : English
BPS : 124938
NUMBER_OF_FRAMES: 66208
NUMBER_OF_BYTES : 22058072
_STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 32-bit
_STATISTICS_WRITING_DATE_UTC: 2023-01-21 00:34:57
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
DURATION : 00:11:40.714000000
File '/recordings/spongebob_nvenc.mkv' already exists. Overwrite? [y/N] y
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> h264 (h264_nvenc))
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
Output #0, matroska, to '/recordings/spongebob_nvenc.mkv':
Metadata:
encoder : Lavf59.27.100
Stream #0:0: Video: h264 (Main) (H264 / 0x34363248), nv12(tv, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 2000 kb/s, 23.98 fps, 1k tbn (default)
Metadata:
BPS : 4456551
NUMBER_OF_FRAMES: 33862
NUMBER_OF_BYTES : 786764035
_STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 32-bit
_STATISTICS_WRITING_DATE_UTC: 2023-01-21 00:34:57
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
DURATION : 00:11:40.908000000
encoder : Lavc59.37.100 h264_nvenc
Side data:
cpb: bitrate max/min/avg: 0/0/2000000 buffer size: 4000000 vbv_delay: N/A
Stream #0:1(ita): Audio: vorbis (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp (default)
Metadata:
title : Italian
BPS : 124938
NUMBER_OF_FRAMES: 66207
NUMBER_OF_BYTES : 22057738
_STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 32-bit
_STATISTICS_WRITING_DATE_UTC: 2023-01-21 00:34:57
_STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
DURATION : 00:11:40.714000000
encoder : Lavc59.37.100 libvorbis
frame=16802 fps=301 q=38.0 Lsize= 183483kB time=00:11:40.71 bitrate=2145.1kbits/s speed=12.6x
video:175492kB audio:7512kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 0.262258%
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 54,649
Threads: 977
Joined: May 2006
#10
Yesterday, 05:06 AM
Yes ffmpeg get the Next PVR url. Your last option is using CUDA too, so you may need to add that too for your card.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode