Answer the question
In order to leave comments, you need to log in
How to correctly decode base64?
Standard methods do not help. Displays ryakozabry, maybe someone came across.
The file is here!
Answer the question
In order to leave comments, you need to log in
File in Data URI format . At the beginning of the file is a header containing the MIME type and encoding. In this case "data:audio/mpeg;base64,". To decode the file, the header must be removed. For example, like this:
cat code.txt | sed 's/data:audio\/mpeg;base64,//' | base64 -d > audio.mpeg
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question