Platform | Initial Aliasing| Aliasing OnTouch
4.0.3 x86 | YES | YES
4.0.3 Arm | NO | YES
4.1.2 x86 | NO | YES
#!/bin/sh | |
if [ $1 ]; then | |
SET_DEVICE="-Dadb.device.arg=\"-s $1\"" | |
fi | |
echo $SET_DEVICE | |
ant clean | |
cd tests | |
ant $SET_DEVICE clean debug install test && date |
SBS for Python-Iview | |
* Overrides all the ABC Iview function, you only get SBS instead | |
* I hacked the internal interface for the list items in order to get the | |
front end to display multiple tree branches for the one SBS XML file, but | |
it should be done in a nicer way. | |
* Only works with the GTK version; probably breaks the CLI version | |
* I don’t think I ever finished the “Copy URL” button idea. But it would be | |
nice to be able to quickly pipe a URL into a video player and stream it | |
without worrying about downloading it. |
#!/usr/bin/env node | |
var pd = require('pretty-data').pd; | |
var buf = ""; | |
process.stdin.resume(); | |
process.stdin.setEncoding('utf8'); | |
process.stdin.on('data', function (chunk) { | |
//process.stdout.write(chunk); |
// ==UserScript== | |
// @name Bespin For Gist.Github | |
// @namespace gistBespin | |
// @include http://www.ngv.vic.gov.au/* | |
// @include https://www.ngv.vic.gov.au/* | |
// @datecreated 2010-07-03 | |
// @lastupdated 2010-07-03 | |
// @version 0.1 | |
// @author Erik Vergobbi Vold | |
// @license MPL 1.1/GPL 2.0/LGPL 2.1 |
Platform | Initial Aliasing| Aliasing OnTouch
4.0.3 x86 | YES | YES
4.0.3 Arm | NO | YES
4.1.2 x86 | NO | YES
Started with: https://github.com/adobe/brackets/tree/glenn/dropbox-integration
because dropbox 3pp js script uses localstorage api
for now just commented out the script elements
Problem seems to be due to the texture that I think is "shared" between android framework which uses SurfaceTexture to write video frames into it and webkit which must then use the texture to apply whatever CSS layout it needs to the video element.
github aosp mirror src: https://github.com/android/platform_frameworks_base/commits/master/core/java/android/webkit/HTML5VideoInline.java