Page 1 of 1

options snapshot path problem

Posted: 30 May 2008 01:06
by andydyble
Hi

Anyone know why the first 2 lines of code work ok , but the second don;t.
Both options path exists

Using Delphi and ActiveX

options := ':snapshot-path=d:\snapshots\12345999.jpg';
VLCPlugin1.addTarget(strDVDDrive, Options, VLCPlayListInsert, 0);

options := ':snapshot-path=c:\documents and settings\adyble\desktop\12345.jpg';
VLCPlugin1.addTarget(strDVDDrive, Options, VLCPlayListInsert, 0);

Thanks

Andy

Re: options snapshot path problem

Posted: 30 May 2008 17:04
by VLC_help
Maybe spaces in filepath? documents[here]and[here]settings

Re: options snapshot path problem

Posted: 30 May 2008 19:33
by andydyble
That's what I first thought. I tried putting quotes around it but I don't think I got the format right. I get the same issue if I try to pass 2 options.

Andy