Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to play video from html 5 file by zipping and unzip file programmatically of this link http://enhancelearning.co.in/downloads/HTML5.zip this file contain 4 html file zip and unzip successfully created but video not playing in web view here is th my code

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docspath = [paths objectAtIndex:0];
    paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    // NSString *cachePath = [paths objectAtIndex:0];



    NSString *zipFile = [docspath stringByAppendingPathComponent:@"001.html"];

    NSURL *url = [NSURL fileURLWithPath:zipFile];
    [webVew loadRequest:[NSURLRequest requestWithURL:url]];
share|improve this question

1 Answer

Try first to put this html file somewhere in the net and see if the video playing when you go to this page from safari.
It's probably HTML-Safari-ios problem, and this way it easier to debug.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.