Reference

videofy.__main__

Command-line interface.

videofy.__main__.decode_video(input_file_path, output_file_path)

Decodes a video into a binary file.

Parameters
  • input_file_path (str) – Input file path of the video

  • output_file_path (str) – Output file path where the decoded file will be saved

Return type

None

videofy.__main__.encode_file(input_file_path, size, output_file_path)

Encodes a binary file into a video.

Parameters
  • input_file_path (str) – Input file path of the binary file

  • size (Tuple[int, int]) – Resolution of the output video

  • output_file_path (str) – Output file path where the video will be saved

Return type

None