-
q1. error using ffplay for vvc file i used y4m file and convert it to h266 now it wont work by ffplay but when i do local stream it work dont know how i do correctly. q2. when i stream local i dont know how to record my video does anyone know which i write to doing it |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 16 replies
-
What FFmpeg are you using? It is not what we explain in our Wiki. Please check with the person developing your FFmpeg integration why it wouldn't work. |
Beta Was this translation helpful? Give feedback.
-
The ffplay version that your are using is the system installation that does not support vvc (version 4.4.2-ubuntu0.22.04.1 as can be seen in your screenshot). |
Beta Was this translation helpful? Give feedback.
-
@lehmann-c Hi, i have i question :: how could i use rtp instead udp or tcp we mention it above. i tried this but i make error Serverffmpeg -re -i input.mp4 -c:v copy -f vvc -sdp_file test_video.sdp "rtp://127.0.0.1:1234" Clientffmpeg -protocol_whitelist rtp,udp -i "rtp://127.0.0.1:1234" out_stream.mkv SDP not recognized-- |
Beta Was this translation helpful? Give feedback.
Just test it as I wrote above:
encode your input and generate a transport stream, e.g.:
ffmpeg -i <input> -c:v vvc -b:v 2M -preset faster vvc.ts
stream it via tcp client:
ffmpeg -i vvc.ts -c:v copy -f mpegts tcp://127.0.0.1:11000
receive it by using an tcp server
ffmpeg -i "tcp://localhost:11000?listen" -vcodec copy -f mpegts output.ts
If that works you can try udp streaming.