Official BS.Player forums

Official BS.Player forums (http://forum.bsplayer.com/)
-   General Talk And Support (http://forum.bsplayer.com/general-talk-support/)
-   -   BsPlayer File Association Issue on All Versions (http://forum.bsplayer.com/general-talk-support/7223-bsplayer-file-association-issue-all-versions.html)

killerss 16th February 2006 11:45 AM

BsPlayer File Association Issue on All Versions
 
First excuse me for my bad english.
On to the problem
I've tried and installed different versions of BsPlayer on my Home PC. Pro and non-Pro, but when I choose in BsPlayer preferences that Avi and other video files to be opened with bsplayer, and I click on such a file the Following Messages Appears
Either "Unknown File Format","Filename is not a Valid Win32 Application","Error Executing Program".
I tried to make file associated with the player the windows way, right clicking selectin choose program, but when I choose BsPlayer.exe, nothing happens. Strangely that a Program called Progam appears in the list.
Choosing BsPlay.exe (not BsPlayer.exe) from the same directory starts the video file, and the file becomes associated with this program file.
Any suggestions how to fix that problem of mine?

J7N 23rd February 2006 05:21 PM

You can always associate files with programs the other Windows way: using Windows registry! That's the only method I ever use.

Here is an example of associating *.vob extension to be opened with either BSPlayer, VideoLAN or Windows Media, and displaying a custom icon "video_mg.ico". The paths will be different on your system, of course.

Code:

REGEDIT4

;; the extension to associate
[HKEY_CLASSES_ROOT\.vob]
;; file type, shortly describing the contents
@="ZZ_mpeg_video"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video]
;; custom type string, not mandatory
@="Motion Pictures Experts Group video"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\DefaultIcon]
;; icon to use
@="c:\\icons\\video_mg.ico,0"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell]
;; default application
@="mplayer2"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\bsplayer]
;; name which will appear when right clicking on VOBs
@="• BSPlayer"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\bsplayer\command]
;; the path to bsplayer executable
@="d:\\apps\\bsplayer\\bsplayer.exe \"%L\""

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\mplayer2]
@="• Windows Media"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\mplayer2\command]
@="mplayer2.exe \"%L\""

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\vlc]
@="• VideoLAN Client"

[HKEY_CLASSES_ROOT\ZZ_mpeg_video\shell\vlc\command]
@="d:\\apps\\vlc\\vlc.exe \"%L\""



All times are GMT +1. The time now is 04:58 AM.

Powered by vBulletin® Version 3.8.9
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
Ad Management plugin by RedTyger


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20