EkaLestari / xuggle

Automatically exported from code.google.com/p/xuggle
0 stars 0 forks source link

Seek issue in mac os #316

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi 
   I have made simple player that plays video file. I have made that in Windows 8 64 bit OS. Seek method works fine (though its slow but jump to exact frame which I wants) in windows 8. But its not working for the MAC OS.
I have implemented Seek method like this. :

public void seek(int seekPosition)  
    {

        long seekTime = seekPosition * 1000;
       container.seekKeyFrame(0, seekTime, seekTime, container.getDuration(), IContainer.SEEK_FLAG_FRAME);

    }

I am not getting any exception but Video does not jump to the seek Position. 
Please help me

Thank You
Tarkik Shah

Original issue reported on code.google.com by chintan...@gmail.com on 21 Oct 2014 at 1:16