Posted by Dokuro on November 13, 2010 at 6:19am
Does anyone else have this problem? Where they have an issue with .mp4 files that are encoded with h264 mpeg-4 container?
Here is a bug I posted, about this, really driving me crazy having searched and searched on this issue, can't seem to find anything solid to fix the issue.
https://bugs.launchpad.net/pantheon/+bug/674492
Just want to see if anyone on Ubuntu has the same issue?

Comments
Got Video working, Thanks to
Got Video working, Thanks to Aaron on the #pantheon IRC Chat.
Had to pipe in mp4:
sudo nano /etc/varnish/default.vclAdd:
// No varnish for videoif (req.url ~ ".mp4") {
return (pipe);
}
Restart Varnish:
sudo /etc/init.d/varnish restart
Have a feeling that I will need to add more to this. Not too hard to do that though. Example for adding m4v (req.url ~ ".mp4|.m4v") should do it.
I'm having the exact same
I'm having the exact same issue. I assume this fix is for Varnish 2?
Thanks.