Slashdot Mirror


YouTube Explains Where HTML5 Video Fails

awjr writes "YouTube have pretty much come down on the side of Flash having major issues with the lack of features that the HTML5 <video> tag has and may never have."

5 of 426 comments (clear)

  1. Stop raining on our OSS parade with your "facts" by elrous0 · · Score: 5, Insightful

    Is the video tag in HTML5 a kludge? Yes. Is it more an ideal than a practical implementation? Sure. Can it compete with a commercial product that has been an accepted part of the web for over 10 years now? Perhaps not. Is it poorly implemented in most modern browsers, with no agreed upon video codec common to any two of them? Yep. Would it be getting any attention at all if Steve Jobs hadn't used it as part of his cheap excuse to block free flash apps from his iControlU line of products? Not likely.

    But all that's missing the point. The point is that it's *OPEN* and not under the control of any nasty for-profit corporation. And that makes it superior. Who *cares* if it doesn't work worth a damn in actual practice?

    --
    SJW: Someone who has run out of real oppression, and has to fake it.
  2. Without content protection, we would not ... by daid303 · · Score: 5, Informative

    Without content protection, we would not be able to offer videos like this.

    This rental is currently unavailable in your country.

    Surprise, you aren't offering those videos.

  3. Re:Stop raining on our OSS parade with your "facts by sobachatina · · Score: 5, Informative

    Not trying to be confrontational but I don't understand your comment and hoped you could explain further.

    I took your comment to mean that even though there were better formats available, MP3 became standard because it was open.

    My confusion is thus-
    1-when MP3 first started being widely used (I started using it extensively in 1997) it was competing with WAV files. There were no better formats.
    2- MP3s are only 'open' in the sense that they don't have embedded DRM. It is still a proprietary format with license fees attached.

  4. Grammar Goliath ONLINE by dhermann · · Score: 5, Insightful

    "YouTube have pretty much come down on the side of Flash having major issues with the lack of features that the HTML5 tag has and may never have."

    1. "have": YouTube is an single corporate entity and not plural
    2. "having major issues": dangling modifier, does YouTube or Flash have the issues?
    3. "pretty much": use this phrase if you're a 13-year-old girl texting, not when talking about the news
    4. "has and may never have": contradictory, how can the tag have something now but may never have the same something later?
    5. "tag has": has what? The major issues, the lack of features, or the major issues with the lack of features?
    6. "Come down on the side of Flash": misleading wording, it sounds like YouTube has actually decided against Flash?

    I guess my point is that this sentence is terrible. How did you possibly allow this, /. mod?

  5. Re:Complaining About an Unfinished Spec? by tepples · · Score: 5, Informative

    HTTP lets you seek to a byte range, but how does that map to a location within the file?

    Find the known timestamps before and after the desired seek point, interpolate where you would need to seek if the part between known timestamps had a constant bit rate, and seek to that part of the file. The last article about Ogg vs. MKV presented a test result that it takes on average 3.5 iterations of this algorithm to get to the right part.

    This could be worked around by putting this data in the header somewhere.

    AVI has such an index. Matroska (wrapper used by WebM) has an index. Ogg does not, but unless you're on a satellite link, four HTTP seeks won't kill you.