I have an algorithm for steganography on h264 (AVC). But I am unable to find a library or equations for H264 compression. The steps are DCT-> Quantization-> Entropy encode**. Can anyone provide me the step by step compression code or equations for these steps? The intention is to manipulate the LSBs after the entropy encoding step. I am using EmguCV and C# for my project. I am also using FFMpeg. I have a very little knowledge on C and C++.
H264 steganography: Step by step compression code/library
1.1k Views Asked by Risina At
1
There are 1 best solutions below
Related Questions in COMPRESSION
- How to use deflate/inflate SetDictionary with raw deflate/inflate?
- C# How to get file/ copy file from a bzip2 (.bz2) file without extracting the file
- How can I compress four floats into a string?
- Create ZIP File Then Send to Client
- compress json data from rest node.js use express compression
- Advanced Data Compression
- Tools to minify CDD and JS files
- How to use multiple threads for zlib compression (same input source)
- Data compression in RDBMS like Oracle, MySQL etc
- Haskell - Lempel-Ziv 78 Compression - very slow, why?
- Python: how to create tar file and compress it on the fly with external module, using different compression methods not available in tarfile module?
- Why isn't lossless compression automatic on computers?
- PHP Image Compression Before Upload
- Compression of char size integer by removing leading zeroes
- BMP Image Compression and Decompression in java
Related Questions in H.264
- Realtime/zero-latency video stream: what codec parameters to use?
- Including SPS and PPS in a raw h264 track
- How to get width and height from the H264 SPS using ffmpeg
- VLC in Raspberry Pi won't play h264 video file
- Converting mkv to h264 FFmpeg
- Convert JPEGs to H264 and stream to my server
- H.264 decoding error log from RTSP stream
- How to extract key-frames closest to given frame numbers from H264 video with ffmpeg
- Configure MediaCodec with the proper MediaFormat from a raw H.264 byte buffer
- Record and play h.264 video in memory using Jcodec
- forcing VLC to play h264 video file
- Decoding a h264 (High) stream with OpenCV's ffmpeg on Ubuntu
- What video encoder gives best performance on an Android device for given quality?
- Demux H264 from (already recorded) raw RTSP stream on HDD
- Color Banding Playing Live Raw H.264 Stream In Android
Related Questions in X264
- GOP size for realtime video stream
- Compiling x264 on a Mac: "No working C compiler found" and "arm-linux-androideabi-gcc: command not found"
- x264: Encoded videos need lots of CPU to play
- Sending metadata per frame with libavcodec
- How to know if x264 uses multiple processors Windows
- GStreamer x264 on Linux (ARM)
- redhat - compile ffmpeg - how to link with liblame/x264 when they're installed locally
- video streaming - mp4 file (x264) - and skip to location
- Container for a single h264 video stream
- x264 rate control modes
- Linphone OSx msx264 encryption VGA takes 97% CPU, why?
- x264 on Ubuntu video bad/corrupted
- H264 steganography: Step by step compression code/library
- Bitmaps to video in C#
- Mencoder Mp4(x264) Encoding
Related Questions in STEGANOGRAPHY
- Image based steganography that survives resizing?
- Web content screen capture copy-protection
- Strong changes a WAV file when you change one bit. Steganography
- C# - Bitmap - Edited png image was saved incorrectly
- Steganography Algorithm using Python PIL
- Image Staganography Algorithms
- Hiding data from a text file in a image file using dwt steganography
- [Steganography ]Hiding Data in PDF files
- Image steganography decoding
- Reconstruct the source file from string output
- how to edit a bitmap of the pixels in an image
- How many bits(maximum number of bits) can be embedded in a pixel?
- algorithm to crack steganography
- block processing with multiple input matrices
- Bitmap color change while compressing to png
Related Questions in VIDEO-WATERMARKING
- ffmpeg watermark from java Runtime.exec cannot find output
- H264 steganography: Step by step compression code/library
- Watermark Not Working For Videos With Exclamation Marks
- How can I add a watermark on videos before uploading them?
- Removing watermark from an image using bbox parameters
- How to add watermark to any oriented video in iOS?
- Add logo to video
- Reposition watermark on video at different positions every minute without plugin
- What is the commmand line to add watermark while screen recording using ffmpeg?
- How to add watermark to video in Flutter using Flutter_ffmpeg
- When is the youtube watermark added when embedding youtube through external third party players (jwplayer i.e.))
- Watermarking on existing video
- How to add water mark in recorded video at a proper position [ Top Middle ] in swift5
- How to display the `test case name` in mobile device screen while flutter integration test is being executed
- Watermarking with scale2ref conundrum - video resizes to watermark rather than watermark scaling to fit video
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
x264 is the best library for h.264 encoding. Its also open source. As for the 'step by step equations' you need to read the ISO/IEC 14496-10 document. Its about 730 pages.