iTunes movies or ones you've ripped yourself?
get air video.
i have it for my iphone and it rocks.
the ipad version is a FREE upgrade and should be out very soon![]()
You can play video through the Mac's built-in Web Sharing. Just put the iPad-compatible .mp4 or .m4v files in your Sites directory, then use the appropriate URL in Safari. (You might even be able to create a directory mapping in Apache so that you don't have to move the files.) It will look like:
http://computername.local/~username/filename.mp4
Obviously a more manual process. (You don't have to type the http:// part. Plus you can also mock up an HTML page with links. Or maybe even write a PHP page to generate it.) But if you need to do it today, and/or you're a cheapskate, it works.
This works on the server side because Apache supports byte ranges for static files. The player can request an arbitrary chunk of the file, so you can jump to any point in the video. This is different than HTTP Live Streaming, which would require wrapping the content in a transport stream and generating the playlist. (In that case, the player would have the "jump back 30 seconds" control.)
You can play video through the Mac's built-in Web Sharing. Just put the iPad-compatible .mp4 or .m4v files in your Sites directory, then use the appropriate URL in Safari. (You might even be able to create a directory mapping in Apache so that you don't have to move the files.) It will look like:
http://computername.local/~username/filename.mp4
Obviously a more manual process. (You don't have to type the http:// part. Plus you can also mock up an HTML page with links. Or maybe even write a PHP page to generate it.) But if you need to do it today, and/or you're a cheapskate, it works.
This works on the server side because Apache supports byte ranges for static files. The player can request an arbitrary chunk of the file, so you can jump to any point in the video. This is different than HTTP Live Streaming, which would require wrapping the content in a transport stream and generating the playlist. (In that case, the player would have the "jump back 30 seconds" control.)
Could someone clarify this for me?
If iTunes is perfectly capable of streaming video to a MacBook, why would it not an iPad? Both obviously have wi-fi. What else is required? Is there something in the system architecture of an iPad which wouldn't allow this? Thus the need for workarounds, such as Air Video? Why not just iTunes?.
Could someone clarify this for me?
If iTunes is perfectly capable of streaming video to a MacBook, why would it not an iPad?
You can play video through the Mac's built-in Web Sharing. Just put the iPad-compatible .mp4 or .m4v files in your Sites directory, then use the appropriate URL in Safari.