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 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   

text file:

  base64 -d file.txt & gt; File.avi    

Comments

Popular posts from this blog

python - Writing Greek in matplotlib labels, titles -

c# - LINQ to Entities does not recognize the method 'Int32 IndexOf(System.String, System.StringComparison)' method -

Pygame memory leak with transform.flip -