Closed chrissiwaffler closed 4 years ago
Hi, probably the problem is the file, sometimes you download a file with .mp3
extension but actually it is a .webm
file.
In that case, try to convert it using flutter_ffmpeg with the command:
var command = "-i \"$songPath\" -vn -ab 128k -ar 44100 -y \"$outputPath\"";
Sounds good, i will try that command soon and post my results!
Thank you very much!
I tested it and it WORKED!
The method now returns true
and the tags of the .mp3-file are edited.
I will close this.
Thank you very much!
Hello there, After i downloaded a .mp3 file of the internet i want to edit the ID3 Tags using this dart extension. After the method
writeTagsFromMap()
is called, i got the following exception printed out in my debugging console:This is my source code (of the editing class):
Note: The method
tagger.writeTagsFromMap()
returnsfalse
.