Thursday, June 5, 2014

Re: safari ios 7 and django app - function not being called to serve video

Thanks for your suggestions Ilya. 

From the apache side of things my serveAsset function is not called when the page is viewed from an iPhone/iPad. But it works fine from a browser on a computer. 

I changed to using the URL tag.

I really can't work it out at the moment.
I wonder if it is some configuration on the mac os x server that is running the django app related to mobile devices? 


On Thu, Jun 5, 2014 at 9:16 AM, Ilya Kazakevich <Ilya.Kazakevich@jetbrains.com> wrote:
Hello,

1) Use FireBug (http://www.hongkiat.com/blog/installing-firebug-browsers-ios/) to check generated HTML for correct link and HTTP request your browser sends/receives
2) Check your web server logs to ensure Safari tries to load video (you need access log and error log I believe: http://httpd.apache.org/docs/2.2/logs.html )
3) NEVER hardcode urls! Use URL tag (https://docs.djangoproject.com/en/dev/ref/templates/builtins/#url)


Ilya Kazakevich,
JetBrains PyCharm (Best Python/Django IDE)
http://www.jetbrains.com/pycharm/
"Develop with pleasure!"


>-----Original Message-----
>From: django-users@googlegroups.com
>[mailto:django-users@googlegroups.com] On Behalf Of Adam Teale
>Sent: Wednesday, June 04, 2014 1:21 AM
>To: django-users@googlegroups.com
>Subject: safari ios 7 and django app - function not being called to serve video
>
>Hi Guys,
>
>I am in the process of building a web app with django.
>The app is running on apache and files/videos are served with the xsendfile
>apache module.
>The app is working fine on iphones, ipads and macs on the local network - when I
>access the site via a url like https://myapp.local
>
>When I visit the app through it's real world domain (https://myapp.com) via a
>computer everything is ok too.
>But when on the iPhone/ipad the videos do not get loaded. The custom url I have
>made for serving the videos isn't even called.
>
>I am embedding the videos like this:
><video src="/serveAsset/{{ asset.asset.id }}" width=100% height:auto
>preload="metadata" autostart="False" controls></video>
>
>So the url is called to grab that asset and return the file response with the path.
>This 'serveAsset' doesn't get called from the iPhone/iPad.
>When I hit that url directly the video doesn't load either.
>(But it does from a mac and safari - including using the "Safari iOS7 - iPhone" User
>agent.
>
>Does Safari iOS7 not work with urls that serve material for the page?
>
>Any ideas what might be going on?
>
>Any help would be very much appreciated!
>
>Cheers
>
>Adam
>
>--
>You received this message because you are subscribed to the Google Groups
>"Django users" group.
>To unsubscribe from this group and stop receiving emails from it, send an email to
><https://groups.google.com/d/msgid/django-users/62927890-40aa-47d6-84cb-0
>c26bd5285f6%40googlegroups.com?utm_medium=email&utm_source=footer> .
>For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/u_zJ8Pc4Eyg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/048d01cf80c0%246852d990%2438f88cb0%24%40JetBrains.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMse0ZjOkfqD%2BAp2z_asTFo1ekYbKc_c79B3k0QhN9hCOKMdkw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment