Difference between open and codecs.open in Python

Since Python 2.6, a good practice is to use io.open(), which also takes an encoding argument, like the now obsolete codecs.open(). In Python 3, io.open is an alias for the open() built-in. So io.open() works in Python 2.6 and all later versions, including Python 3.4. See docs: http://docs.python.org/3.4/library/io.html Now, for the original question: when reading … Read more

How to use Blob URL, MediaSource or other methods to play concatenated Blobs of media fragments?

There is currently no Web API targeted to video editing. The MediaStream and MediaRecorder APIs are meant to deal with live sources. Because of the structure of video files, you can’t just slice a part of it to make a new video, nor can you just concatenate small video files to make one longer. In … Read more