Search found 4 matches

Go to advanced search

by paolofonta
12 Oct 2020 10:25
Forum: VLC stream-output (sout)
Topic: Enable Hardware Encoding
Replies: 4
Views: 1398

Re: Enable Hardware Encoding

This is working python3 script.py | ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -f rawvideo -pix_fmt rgb24 -s:v 1920x1080 -r 24 -i - -c:v h264_nvenc -f h264 - | cvlc stream:///dev/stdin --sout "#transcode{vcodec=mjpg,vb=2500,fps=24,acodec=none}:standard{access=http{user=pippo,p...
by paolofonta
08 Oct 2020 13:32
Forum: VLC stream-output (sout)
Topic: Enable Hardware Encoding
Replies: 4
Views: 1398

Re: Enable Hardware Encoding

At the moment the solution I'm thinking about is to use FFMPEG to perform hardware encoding. The output of the script is the input of FFMPEG and the output of FFMPEG will be the input of VLC. I'm using this pipe: python3 script.py | ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -f raw...
by paolofonta
06 Oct 2020 17:20
Forum: VLC stream-output (sout)
Topic: Enable Hardware Encoding
Replies: 4
Views: 1398

Re: Enable Hardware Encoding

Ok, fine, but is there any encoder that I can use that allows me to make GPU encoding?
by paolofonta
06 Oct 2020 09:17
Forum: VLC stream-output (sout)
Topic: Enable Hardware Encoding
Replies: 4
Views: 1398

Enable Hardware Encoding

Good morning I'm sending frames to VLC with a python script via std output and I'm exposing the resulting video on http with the following terminal command: python3 script.py | cvlc --demux=rawvideo --rawvid-fps=25 --rawvid-width=1920 --rawvid-height=1080 --rawvid-chroma=RV24 - --no-audio --sout '#t...

Go to advanced search