VideoLAN external player plugin (1 Viewer)

BigBear

Portal Pro
February 13, 2008
70
0
Home Country
Germany Germany
Thanks for the fast reply!

Im sorry to hear, that you dont develop the plugin anymore (glad for your new job though) :)

I just love vlc so ill try to figure out the shortcuts you used and just learn these to my harmony...
 

moiristo

Portal Pro
November 17, 2006
342
27
Enschede
Home Country
Netherlands Netherlands
The piece of code below shows the key mappings. Action.ActionType is defined in MP. Hope this helps :)

if (foAction.wID == Action.ActionType.ACTION_NEXT_AUDIO)
{
vlcControl.RotateAudioTrack();
}
if (foAction.wID == Action.ActionType.ACTION_TAKE_SCREENSHOT)
{
vlcControl.SnapShot();
}
if (foAction.wID == Action.ActionType.ACTION_ASPECT_RATIO)
{
vlcControl.RotateAspectRatio();
}
if (foAction.wID == Action.ActionType.ACTION_SHOW_GUI || foAction.wID == Action.ActionType.ACTION_SHOW_FULLSCREEN)
{
UpdateStatus();
SetWindows();
}
if (foAction.wID == Action.ActionType.ACTION_AUDIO_DELAY_MIN)
{
if(audioDelay>0)
{
audioDelay--;
vlcControl.AudioDelay = audioDelay;
}
}
if (foAction.wID == Action.ActionType.ACTION_AUDIO_DELAY_PLUS)
{
audioDelay++;
vlcControl.AudioDelay = audioDelay;
}
if (foAction.wID == Action.ActionType.ACTION_BIG_STEP_BACK)
{
vlcControl.BigStepBack();
}
if (foAction.wID == Action.ActionType.ACTION_BIG_STEP_FORWARD)
{
vlcControl.BigStepForward();
}
if (foAction.wID == Action.ActionType.ACTION_DVD_MENU)
{
vlcControl.DvdMenu();
}
//if (foAction.wID == Action.ActionType.ACTION_FORWARD)
//{
// vlcControl.Faster();
//}
//if (foAction.wID == Action.ActionType.ACTION_REWIND)
//{
// vlcControl.Slower();
//}
if (foAction.wID == Action.ActionType.ACTION_FORWARD || foAction.wID == Action.ActionType.ACTION_STEP_FORWARD)
{
vlcControl.MediumStepForward();
}
if (foAction.wID == Action.ActionType.ACTION_REWIND || foAction.wID == Action.ActionType.ACTION_STEP_BACK)
{
vlcControl.MediumStepBack();
}
if (foAction.wID == Action.ActionType.ACTION_MOVE_LEFT)
{
vlcControl.MoveLeft();
}
if (foAction.wID == Action.ActionType.ACTION_MOVE_RIGHT)
{
vlcControl.MoveRight();
}
if (foAction.wID == Action.ActionType.ACTION_MOVE_DOWN)
{
vlcControl.MoveDown();
}
if (foAction.wID == Action.ActionType.ACTION_MOVE_UP)
{
vlcControl.MoveUp();
}
if (foAction.wID == Action.ActionType.ACTION_NEXT_SUBTITLE)
{
vlcControl.RotateSubtitles();
}
if (foAction.wID == Action.ActionType.ACTION_NEXT_CHAPTER)
{
vlcControl.NextDvdChapter();
}
if (foAction.wID == Action.ActionType.ACTION_PREV_CHAPTER)
{
vlcControl.PreviousDvdChapter();
}
if (foAction.wID == Action.ActionType.ACTION_RECORD)
{
vlcControl.Record();
}
if (foAction.wID == Action.ActionType.ACTION_SMALL_STEP_BACK)
{
vlcControl.ShortStepBack();
}
if (foAction.wID == Action.ActionType.ACTION_SELECT_ITEM)
{
vlcControl.Activate();
}
if (foAction.wID == Action.ActionType.ACTION_STOP)
{
Player_stopEvent();
}
 

puppetj

Portal Member
March 3, 2007
28
0
thanks for the vlc plugin, but i need it to play isos like vlc does, how can i do that? why isnt it in associate file types in cfg plugin?
 

natopotato

Portal Member
August 24, 2008
18
1
Hello, I have been messing around with MP for 2 weeks or so. It does EVERYTHING I NEED, except I cannot stop Live TV from TV3 server from shuttering everytime there is a error in the FTA DVB Stream... Long story short Default MP player (WMP11?) Shutters on Live, recorded... ANY TV... but VLC player does not stutter it shows a tiny artifact.... so.


bottom line! can this plugin replace WMP as the player for LIVE TV from my TV3 DVB stream (and recorded TV for that matter)
 

moiristo

Portal Pro
November 17, 2006
342
27
Enschede
Home Country
Netherlands Netherlands
I guess you're better off in finding a good codec that handles errors in the stream better than the default WMP codec.
 

natopotato

Portal Member
August 24, 2008
18
1
Thanks for the reply, As far as i can tell it has nothing to do with the codec... Iv use Purevideo, i have tried FFSHOW NERO PowerDVD So i dont know what it is but the default WMP hangs on stream artifacts (it does not really show them it just pauses for half second or so) VLC just plays right through them... its usually a tiny artifact covering 2% of the screen.....

If i can get VLC to take over playing Live TV i am sure this willcorrect the problem....


This might be a fix for this issue..(its a big thread in the bug report forum area)
 

natopotato

Portal Member
August 24, 2008
18
1
Hello, I believe this will solve ALL MY PROBLEMS!!! LOL... i followed the installation directions... except i installed the MPI first before copying the vlc DLL file, would this cause the program to fail.. because from what i can tell VLC is not playing back my files... is there anyway to test if VLC is taking over playback of files in MP??
 

YoMaMmA

Portal Member
December 12, 2006
23
0
47
Home Country
Denmark Denmark
Anybody having problems using the new vlc player 0.9.2 ?

I cant use the plugin after i updated my vlc player?

Plz. help cant play hd material any more
 

Users who are viewing this thread

Top Bottom