does the timeshift really work on the libvlc ?
I set th eparametrs on the media
Code: Select all
mCurrentMedia.addOption(":access=timeshift");
mCurrentMedia.addOption(":input-timeshift-path=" + downfolder); // for example /sdcard/Download
long granularity = ((mPref.getmPlayerTimeShift() * 1024) * 1024); // it can be changed throught preferences
mCurrentMedia.addOption(":input-timeshift-granularity=" + String.valueOf(granularity));
Is there something wrong or is it simply not working ?
Thank you