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

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -