• Welcome to the Off-Topic/Schweb's Lounge

    In addition to the Mac-Forums Community Guidelines, there are a few things you should pay attention to while in The Lounge.

    Lounge Rules
    • If your post belongs in a different forum, please post it there.
    • While this area is for off-topic conversations, that doesn't mean that every conversation will be permitted. The moderators will, at their sole discretion, close or delete any threads which do not serve a beneficial purpose to the community.

    Understand that while The Lounge is here as a place to relax and discuss random topics, that doesn't mean we will allow any topic. Topics which are inflammatory, hurtful, or otherwise clash with our Mac-Forums Community Guidelines will be removed.

Adobe abandoning mobile-flash

vansmith


Retired Staff
Joined
Oct 19, 2008
Messages
19,966
Reaction score
606
Points
113
Location
Queensland
Your Mac's Specs
Too many devices to list
Hey, you started this. And I'm sorry if my brilliance bores you. :p
 
Joined
Nov 15, 2011
Messages
959
Reaction score
160
Points
43
Location
Toronto
Your Mac's Specs
MBP 16” M1max 32/1tb and bunch of other mac/apple stuff
it puts me to sleep too, and as much as the (mac) flash plugin was an adobe abomination at least until Jobs kicked them in the nads over it, when I do embeded video I now have to dance around who what where supports what in the alternative content.

Much like when I switched from pc to mac because I hated the time waste of fooling with something I detested, I just wish the posturing and multi-format warz would end and we just settle on something cool and works.

Yes I'm new here. I'm not a bot nor troll. Really.
 
OP
BrianLachoreVPI

BrianLachoreVPI


Retired Staff
Joined
Feb 24, 2011
Messages
3,733
Reaction score
124
Points
63
Location
Maryland
Your Mac's Specs
March 2011 15" MBP 2.3GHz i7 Quad Core 8GB Ram | Mid 2011 27" iMac 3.4 GHz i7 16 GB RAM 2 TB HDD
Hey, you started this. And I'm sorry if my brilliance bores you. :p

Hahahaha...oh where to start with this - maybe I'll save it for IRC :Evil:
 

vansmith


Retired Staff
Joined
Oct 19, 2008
Messages
19,966
Reaction score
606
Points
113
Location
Queensland
Your Mac's Specs
Too many devices to list
it puts me to sleep too, and as much as the (mac) flash plugin was an adobe abomination at least until Jobs kicked them in the nads over it, when I do embeded video I now have to dance around who what where supports what in the alternative content.
This is the joy of multiple source tags:
Code:
<video width="320" height="240" controls="controls">
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.ogg" type="video/ogg" />
  Your browser does not support the video tag.
</video>
You get all browsers that way. ;)

Take a look here for more info.
 
Joined
Nov 15, 2011
Messages
959
Reaction score
160
Points
43
Location
Toronto
Your Mac's Specs
MBP 16” M1max 32/1tb and bunch of other mac/apple stuff
This is the joy of multiple source tags:
Code:
<video width="320" height="240" controls="controls">
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.ogg" type="video/ogg" />
  Your browser does not support the video tag.
</video>
You get all browsers that way. ;)

Take a look here for more info.

yep I'm doing a large project in wordpress where I'm doing some crazy flash objects (hey it's a booze company) but I'm "alt-ing" it with all kinds of jquery sexiess and for the first time (I'm late yes) making all the html5 video stuff as well. I cold aaaaalmost kill the flash but perhaps in a couple years.
 
Joined
Nov 14, 2011
Messages
19
Reaction score
0
Points
1
Location
New Brunswick, Canada
Your Mac's Specs
13" Late 2011 MBP 8GB RAM 640GB HDD
This is the joy of multiple source tags:
Code:
<video width="320" height="240" controls="controls">
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.ogg" type="video/ogg" />
  Your browser does not support the video tag.
</video>
You get all browsers that way. ;)

Take a look here for more info.
Snazzy. I didn't realize the browser would be responsible for determining which video to play. I haven't had a chance to play much with HTML5 yet :(

The problem, still, with video is that this will only allow for progressive downloads of the videos. So you can only play what has downloaded so far. In order for you to jump around to parts that haven't yet loaded, like YouTube does, there would be some kind of server-side requirement.
 
Joined
Nov 15, 2011
Messages
959
Reaction score
160
Points
43
Location
Toronto
Your Mac's Specs
MBP 16” M1max 32/1tb and bunch of other mac/apple stuff
snazzy when you only have a couple videos, but when you have a site with hundreds, man, uploading two versions gets tiresome.
 

vansmith


Retired Staff
Joined
Oct 19, 2008
Messages
19,966
Reaction score
606
Points
113
Location
Queensland
Your Mac's Specs
Too many devices to list
Snazzy. I didn't realize the browser would be responsible for determining which video to play. I haven't had a chance to play much with HTML5 yet :(

The problem, still, with video is that this will only allow for progressive downloads of the videos. So you can only play what has downloaded so far. In order for you to jump around to parts that haven't yet loaded, like YouTube does, there would be some kind of server-side requirement.
Yeah, it's great to create a page where you don't have to worry about what browser the user is using.

As for the progress bit, I'm fairly confident that if you click ahead, it will play from there. Granted, it's not as smooth as YouTube but it works.
 
Joined
Nov 14, 2011
Messages
19
Reaction score
0
Points
1
Location
New Brunswick, Canada
Your Mac's Specs
13" Late 2011 MBP 8GB RAM 640GB HDD
As for the progress bit, I'm fairly confident that if you click ahead, it will play from there. Granted, it's not as smooth as YouTube but it works.
The only way it could is if the specifications mandated that the browsers tell the server to "resume" downloading the video from the specified point, and even in this case (which seems unlikely to me), the web server would have to support resuming downloads (not all do). Which still means that there would be some server-side requirement. HTML5 is, after all, just a markup language and not an API.

Time will tell, though. I'd love to be wrong, because that would help me out tremendously at work.
 

vansmith


Retired Staff
Joined
Oct 19, 2008
Messages
19,966
Reaction score
606
Points
113
Location
Queensland
Your Mac's Specs
Too many devices to list
I think the best way to see if this is the case it to test it. I might have to try that later.
 
Joined
Nov 14, 2011
Messages
19
Reaction score
0
Points
1
Location
New Brunswick, Canada
Your Mac's Specs
13" Late 2011 MBP 8GB RAM 640GB HDD
I think the best way to see if this is the case it to test it. I might have to try that later.
I agree.

I just tested it out and was blown away. It actually will skip ahead. It's not all that smooth, but it works just fine. Sweet!

Makes me wonder why Flash can't do this without a media server...

Additional Information: It's working in Chrome (Windows 7) and Safari (OS X), but a co-worker tried it in Safari (Windows 7) and it didn't work.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top