0
can i change encoding ID3v1 or esle to windows-1251, i think it will help me to recognise russian mp3 files.
Responses (14)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0i change in module.tag.id3v2.php
static $TextEncodingNameLookup = array( 0 => 'ISO-8859-1', // $00 ISO-8859-1. Terminated with $00. 1 => 'UTF-16', // $01 UTF-16 encoded Unicode with BOM. All strings in the same frame SHALL have the same byteorder. Terminated with $00 00. 2 => 'UTF-16BE', // $02 UTF-16BE encoded Unicode without BOM. Terminated with $00 00. 3 => 'UTF-8', // $03 UTF-8 encoded Unicode. Terminated with $00. 255 => 'UTF-16BE' ); return (isset($TextEncodingNameLookup[$encoding]) ? $TextEncodingNameLookup[$encoding] : 'ISO-8859-1'); }
to this
static $TextEncodingNameLookup = array( 0 => 'windows-1251', // $00 ISO-8859-1. Terminated with $00. 1 => 'UTF-16', // $01 UTF-16 encoded Unicode with BOM. All strings in the same frame SHALL have the same byteorder. Terminated with $00 00. 2 => 'UTF-16BE', // $02 UTF-16BE encoded Unicode without BOM. Terminated with $00 00. 3 => 'UTF-8', // $03 UTF-8 encoded Unicode. Terminated with $00. 255 => 'UTF-16BE' ); return (isset($TextEncodingNameLookup[$encoding]) ? $TextEncodingNameLookup[$encoding] : 'windows-1251'); }
and magic my mp3 tags files upload well...
but links are dead( -
Accepted Answer
0can u pls help me, and test this mp3
cult-portal.ru/mp3/1.mp3
cult-portal.ru/mp3/2.mp3
cult-portal.ru/mp3/3.mp3
cult-portal.ru/mp3/4.mp3
with this fix, they upload well... but when i click link is empty, all ok in admin panel... -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »