AVI not read with 1.5.10 AVI not read with 1.5.10
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

AVI not read with 1.5.10

Started by cavok, December 14, 2010, 12:28:36 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

cavok

Hello, since I went from version 1.5.9 to version 1.5.10, AVI videos in my Firefox no longer read, while in IE there is no problem.
Thank's for your help.
Coppermine 1.5.22 hosting by Free

Αndré

Copy the function theme_html_picture from themes/sample/theme.php to your theme's theme.php file. Then, find
            $players['WMP'] = array('id' => 'MediaPlayer',
                                    'clsid' => 'classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" ',
                                    'codebase' => 'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ',
                                    'mime' => 'type="application/x-mplayer2" ',
                                   );

and replace with
            $players['WMP'] = array('id' => 'MediaPlayer',
                                    'clsid' => '',
                                    'codebase' => 'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ',
                                    'mime' => 'type="application/x-mplayer2" ',
                                   );

cavok

André thank you for that answer.
But until I tried your answer from Video Player problem where the problem seems similar.
either:
Quote from: Αndré on December 05, 2010, 04:50:06 PM
Please try the following. Open include/themes.inc.php, find
$pic_html  = '<object id="'.$player['id'].'" '.$player['data'].$player['clsid'].$player['codebase'].$player['mime'].$image_size['whole'].'>';
and replace with
$pic_html  = '<object id="'.$player['id'].'" '.$player['data'].$player['classid'].$player['codebase'].$player['mime'].$image_size['whole'].'>';
And it works.

Would you prefer that I keep making your changes on the previous topic (which looks more simple and that works).
Or try to apply even when your proposal here.
Coppermine 1.5.22 hosting by Free

Αndré

The changes in the other thread will break the playback of Quicktime movies, so I'd prefer the proposal I just gave you here.

cavok

I did as recommended, it works well.

Should I make this change for each update or it will be integrated ?
Coppermine 1.5.22 hosting by Free

Αndré

I try to find a solution that works with all movie formats.