Quote:
Originally Posted by docvader
Crist
Latest version: I have the same issue with the mpegs not playing (it wants QuickTime, instead of Windows Media Player). Now, I hate Microsoft as much as anyone else, and I am an Apple afficionado, but, let's face it, WMP has beaten QT when it comes to widespread availability.
Can you make a product that forces videos, other than the usual Mac file formats, to use WMP?
Thanks! Hope all is well over there in Wuhan. I'll be there this summer.
rich
|
Just the same way.
You could edit the product xml file.
Find
PHP Code:
case 'mpeg':
case 'mpg':
case 'm1s':
case 'm1v':
case 'm1a':
case 'm75':
case 'm15':
case 'mp2':
case 'mpm':
case 'mpv':
case 'mpa':
$media['mime']='video/x-mpeg';
$media['type']='quick_time';
Replace with
PHP Code:
case 'mpeg':
case 'mpg':
case 'm1s':
case 'm1v':
case 'm1a':
case 'm75':
case 'm15':
case 'mp2':
case 'mpm':
case 'mpv':
case 'mpa':
$media['mime']='video/x-mpeg';
$media['type']='windows_media';