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
Reproduction steps:
# Create a file containing random data (shell expansion used for cross-platform compatibility) dd if=/dev/urandom bs=$((1024 * 1024)) count=2 of=data.bin # Encode with 8 bits per pixel ./bin2video -b 8 -s 8 -w 1920 -h 1080 -e -i data.bin -o data.bin.mp4 # Decode ./bin2video -d -i data.bin.mp4 -o data-out.bin
data-out.bin will be exactly 1 byte larger than data.bin and the extra byte will be a null byte.
data-out.bin
data.bin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction steps:
data-out.bin
will be exactly 1 byte larger thandata.bin
and the extra byte will be a null byte.The text was updated successfully, but these errors were encountered: