|
@@ 728-731 (lines=4) @@
|
| 725 |
|
foreach ($info['ogg']['comments'] as $index => $commentvalue) { |
| 726 |
|
switch ($index) { |
| 727 |
|
case 'rg_audiophile': |
| 728 |
|
case 'replaygain_album_gain': |
| 729 |
|
$info['replay_gain']['album']['adjustment'] = (double) $commentvalue[0]; |
| 730 |
|
unset($info['ogg']['comments'][$index]); |
| 731 |
|
break; |
| 732 |
|
|
| 733 |
|
case 'rg_radio': |
| 734 |
|
case 'replaygain_track_gain': |
|
@@ 734-737 (lines=4) @@
|
| 731 |
|
break; |
| 732 |
|
|
| 733 |
|
case 'rg_radio': |
| 734 |
|
case 'replaygain_track_gain': |
| 735 |
|
$info['replay_gain']['track']['adjustment'] = (double) $commentvalue[0]; |
| 736 |
|
unset($info['ogg']['comments'][$index]); |
| 737 |
|
break; |
| 738 |
|
|
| 739 |
|
case 'replaygain_album_peak': |
| 740 |
|
$info['replay_gain']['album']['peak'] = (double) $commentvalue[0]; |