Package steganography.video.encoders
Interface IDecoder
-
- All Known Implementing Classes:
VideoDecoder
public interface IDecoder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<byte[]>
decodeVideoToFrames(int nThread)
Decode a Video to single Pictures (that can be read as Buff Images) as byte[]
-
-
-
Method Detail
-
decodeVideoToFrames
java.util.List<byte[]> decodeVideoToFrames(int nThread) throws java.io.IOException
Decode a Video to single Pictures (that can be read as Buff Images) as byte[]- Parameters:
nThread
- Number of Threads to use to decode- Returns:
- List of pictures decoded from Video
- Throws:
java.io.IOException
- if a read or write fails
-
-