audio - how to convert downloaded video file to text file -
I downloaded many video files and it should be converted to text files. Can anyone help me convert a video file into text? This is very important for my project. Please reply as soon as possible .. Thanks in advance
Normally I recommend converting files to text file: Base64 . On Linux, you can use the
base64 command line tool to convert the binary file to a text presentation.
base64 file.avi & gt; To decode file.txt
base64 -d file.txt & gt; File.avi
Comments
Post a Comment