Text over video
Hi!!!
I'm coding a little program that loads a MPG movie and draws text over the movie. I have a problem in the next piece of code:
DataSource ds = Manager.createDataSource(fileURL);
ds.connect();
cds = (PushBufferDataSource) ds;
cds.getStreams()[0].setTransferHandler(this);
ds.start();
The problem arrives at the time of casting ds to PushBufferDataSource.
Anyone can help?
Thanks in advance.

