T=5
F=PODCASTURL
1='http://www.philfarrand.com/podcast/?feed=rss2'
The above throws out a syntax error due to the = sign.
Any thoughts?
Thanks
RKO
T=5
F=PODCASTURL
1='http://www.philfarrand.com/podcast/?feed=rss2'
The above throws out a syntax error due to the = sign.
Any thoughts?
Thanks
RKO
While in Mp3tag v2.70 user interface I cannot reproduce the error.
If you edit a mta-file directly with a text editor, then you have to escape special characters.
For example ... replace the equal sign = with the string \u003d.
DD.20150604.0950.CEST
The unicode replacement worked ...
T=5
F=PODCASTURL
1='http://www.philfarrand.com/podcast/?feed'\u003d'rss2'
Thanks