void __fastcall TForm1::ButtonStartClick(TObject *Sender)
{
VLCPlugin1->play();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::ButtonStopClick(TObject *Sender)
{
VLCPlugin1->pause();
VLCPlugin1->stop();
VLCPlugin1->playlistClear();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormShow(TObject *Sender)
{
/* Vlc Liste mode
VLCPlayListAppend 4
VLCPlayListAppendAndGo 12
VLCPlayListCheckInsert 16
VLCPlayListInsert 1
VLCPlayListInsertAndGo 9
VLCPlayListReplace 2
VLCPlayListReplaceAndGo 8 */
WideString CheminChaine;
TVariant Var = "NULL";
CheminChaine = "L:\\VIDEO_TS\\VTS_01_1.VOB";
VLCPlugin1->playlistClear();
VLCPlugin1->addTarget(CheminChaine,Var,VLCPlayListAppendAndGo,0);
}
//---------------------------------------------------------------------------
Partager