1. 03 Mar, 2014 1 commit
  2. 02 Mar, 2014 1 commit
    • When debugging transmux issues, it can be handy to be able to easily compare the result of the javascript segment parser with the working output from a tool like ffmpeg. Put together a test page to display the hex dump of segment-parser output side-by-side with a working example. Fixed the hex dump utility to produce more than one line of output per tag.
      David LaPalomento committed
  3. 28 Feb, 2014 2 commits
  4. 27 Feb, 2014 2 commits
  5. 26 Feb, 2014 1 commit
  6. 25 Feb, 2014 3 commits
  7. 24 Feb, 2014 1 commit
  8. 23 Feb, 2014 1 commit
  9. 21 Feb, 2014 3 commits
  10. 13 Feb, 2014 4 commits
  11. 12 Feb, 2014 1 commit
    • Pushing an entire segment worth of FLV tags into the source buffer at once caused noticeable delays with high-bitrate segments. Instead, wrap each call to appendBuffer in a setTimeout of zero so that the browser has a chance to render frames while the segment is being transferred to the SWF. Make sure that appends-in-progress are cleared if a seek is initiated.
      David LaPalomento committed
  12. 10 Feb, 2014 6 commits
  13. 09 Feb, 2014 2 commits
  14. 06 Feb, 2014 1 commit
  15. 05 Feb, 2014 2 commits
  16. 04 Feb, 2014 2 commits
  17. 31 Jan, 2014 2 commits
  18. 29 Jan, 2014 3 commits
  19. 28 Jan, 2014 2 commits
    • The plugin doesn't work in IE8 or 9, so be more clear about that.
      David LaPalomento committed
    • Fixes #110. Fixes #116. If timeupdates were being firing without a media playlist available yet, fillBuffer would dereference a property on undefined and blow up. Timeupdates occur manually on a fixed interval when using the Flash tech so this was guaranteed to happen whenever the media playlist was unretrievable. To avoid this, wait to register buffer checks until a media playlist has been successfully downloaded. As it turns out, this is the same moment we normally trigger loadedmetadata so it was possible to transform a loadedmetadata handler into a direct call to fillBuffer.
      David LaPalomento committed