We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
Get some image and resize and convert it to RGB48 with ffmpeg:
ffmpeg -i in.png -vf scale=928:576 -f rawvideo -pix_fmt rgb48 out.raw
Convert to TBC with and without -c option:
-c
tools/ld-chroma-decoder/encoder/ld-chroma-encoder out.raw out.cvbs-ll tools/ld-chroma-decoder/encoder/ld-chroma-encoder -c out.raw out.cvbs-sl
tools/ld-chroma-decoder/encoder/ld-chroma-encoder out.raw out.cvbs-ll
tools/ld-chroma-decoder/encoder/ld-chroma-encoder -c out.raw out.cvbs-sl
Now out.cvbs-sl.json contains:
out.cvbs-sl.json
"isSubcarrierLocked":true, "sampleRate":17734475
As far as I am aware, this is correct.
But out.cvbs-ll.json contains:
out.cvbs-ll.json
"isSubcarrierLocked":false, "sampleRate":17734475
My understanding is that the sample rate should be 17734375, exactly 100Hz less.
I have not yet checked whether the actual output samples are correct in either case.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce:
Get some image and resize and convert it to RGB48 with ffmpeg:
ffmpeg -i in.png -vf scale=928:576 -f rawvideo -pix_fmt rgb48 out.raw
Convert to TBC with and without
-c
option:tools/ld-chroma-decoder/encoder/ld-chroma-encoder out.raw out.cvbs-ll
tools/ld-chroma-decoder/encoder/ld-chroma-encoder -c out.raw out.cvbs-sl
Now
out.cvbs-sl.json
contains:As far as I am aware, this is correct.
But
out.cvbs-ll.json
contains:My understanding is that the sample rate should be 17734375, exactly 100Hz less.
I have not yet checked whether the actual output samples are correct in either case.
The text was updated successfully, but these errors were encountered: