controller.terminateすればいいらしい??
RE: https://p1.a9z.dev/notes/9jctqwzms3
名前 aqz(akius) / tamaina
職業
24歳男性ほぼ無職
元Misskey Collaborator (TypeScript少しできる)
内容
#kigurumi (持ってない着ない 写真= #aqz_kig_photo ), 鉄道, カメラ/動画/写真 (#aqz_photo , #aqz_photo_kizai ), ガジェット, etc.
その他のアカウント
@tamaina@misskey.io
エックス https://x.com/t_ma1n
controller.terminateすればいいらしい??
RE: https://p1.a9z.dev/notes/9jctqwzms3
WHATWGのTransformStream、Readable側にclose相当のシグナルを突っ込めないのが辛い
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
昨日のMisskeyの活動は
レート: 119.52849
ノート: 98649(+38)
フォロー : 8702(+5)
フォロワー :4433(+2)
でした。
https://misskey.tools
#misshaialert
このアカウントは、notestockで公開設定になっていません。
Chromeの実装としてはソースのreadableが何も考えずcotroller.enqueueしまくっても受け側のwritable(かTransformStream)がwrite(transform)のPromiseに時間がかかるとどっかにキャッシュしてくれるのね
RE: https://p1.a9z.dev/notes/9jctqwzms3
WHATWGのTransformStream、Readable側にclose相当のシグナルを突っ込めないのが辛い
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
Safari 17でFile(Blob).stream().getReader().read()がNotReadableError: The I/O read operation failed.
になるんだけど原因がわからん
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
const file = document.getElementById('file');
file.onchange = async () => {
console.log('change', file.files);
const target = Array.from(file.files ?? [])[0];
if (!target) return;
console.log('target', target);
const reader = target.stream().getReader();
console.log('reader', reader);
const { done, value } = await reader.read().catch(e => {
console.error(e);
throw Error(e);
});
console.log(done, value);
}
Safari 17でFile(Blob).stream().getReader().read()が
NotReadableError: The I/O read operation failed.
になるんだけど原因がわからん
2GB程度のファイルはよくて5GBちょっとのファイルはダメだわね
RE: https://p1.a9z.dev/notes/9jd11my7tt
const file = document.getElementById('file'); file.onchange = async () => { console.log('change', file.files); const target = Array.from(file.files ?? [])[0]; if (!target) return; console.log('target', target); const reader = target.stream().getReader(); console.log('reader', reader); const { done, value } = await reader.read().catch(e => { console.error(e); throw Error(e); }); console.log(done, value); }
うーん、でかいファイルだけダメなんかな
RE: https://p1.a9z.dev/notes/9jd0pevutl
Safari 17でFile(Blob).stream().getReader().read()が
NotReadableError: The I/O read operation failed.
になるんだけど原因がわからん
hvc1のデコード対応してない説
RE: https://p1.a9z.dev/notes/9jd1ggi2ue
VideoDecoder.configure()、Chromeだと受け付けていたものがSafariだとダメと言われる
このアカウントは、notestockで公開設定になっていません。
hvc1のデコード対応してない説
RE: https://p1.a9z.dev/notes/9jd1ggi2ue
VideoDecoder.configure()、Chromeだと受け付けていたものがSafariだとダメと言われる
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。