00:04:01 @aqz@p1.a9z.dev
icon

controller.terminateすればいいらしい??

RE:
https://p1.a9z.dev/notes/9jctqwzms3

00:04:11 @aqz@p1.a9z.dev
2023-09-07 23:28:26 Posting Masaki Hara qnighy@qnmd.info
icon

This account is not set to public on notestock.

00:04:18 @aqz@p1.a9z.dev
2023-08-22 02:50:53 Posting :nekobounce:ぺこん pekon@misskey.io
icon

This account is not set to public on notestock.

00:04:28 @aqz@p1.a9z.dev
2023-09-07 20:12:22 Posting 鈴音れな🍫 suzunonerena@misskey.io
icon

This account is not set to public on notestock.

00:04:46 @aqz@p1.a9z.dev
2023-09-08 00:04:42 Posting 壱田:verify::skeb: ppppponpoko1@misskey.io
icon

This account is not set to public on notestock.

00:11:28 @aqz@p1.a9z.dev
icon

昨日のMisskeyの活動は

レート: 119.52849
ノート: 98649(+38)
フォロー : 8702(+5)
フォロワー :4433(+2)

でした。
https://misskey.tools

00:16:47 @aqz@p1.a9z.dev
2023-09-08 00:16:34 Posting ばばりろ⛩ babalilo@misskey.io

This account is not set to public on notestock.

00:18:52 @aqz@p1.a9z.dev
icon

Chromeの実装としてはソースのreadableが何も考えずcotroller.enqueueしまくっても受け側のwritable(かTransformStream)がwrite(transform)のPromiseに時間がかかるとどっかにキャッシュしてくれるのね

RE:
https://p1.a9z.dev/notes/9jctqwzms3

00:19:39 @aqz@p1.a9z.dev
2023-09-08 00:19:33 Posting ばばりろ⛩ babalilo@misskey.io

This account is not set to public on notestock.

01:09:50 @aqz@p1.a9z.dev
2023-08-21 21:22:58 Posting くまちゅき:skeb: :pixiv_icon: kumachuki@misskey.io
icon

This account is not set to public on notestock.

02:38:58 @aqz@p1.a9z.dev
2023-09-08 02:38:51 Posting monose:skeb: :role_illustrator: monose@misskey.io
icon

This account is not set to public on notestock.

02:39:47 @aqz@p1.a9z.dev
icon

Safari 17でFile(Blob).stream().getReader().read()がNotReadableError: The I/O read operation failed.になるんだけど原因がわからん

02:47:22 @aqz@p1.a9z.dev
2023-09-07 20:06:50 Posting 黒杞よるの:role_illustrator: _y_kuroki_@misskey.io
icon

This account is not set to public on notestock.

02:47:37 @aqz@p1.a9z.dev
2023-09-08 02:42:32 Posting 紅葉おろし momozizizi@misskey.io
icon

This account is not set to public on notestock.

02:49:17 @aqz@p1.a9z.dev
icon

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

02:50:35 @aqz@p1.a9z.dev
icon

2GB程度のファイルはよくて5GBちょっとのファイルはダメだわね

RE:
https://p1.a9z.dev/notes/9jd11my7tt

03:00:49 @aqz@p1.a9z.dev
icon

VideoDecoder.configure()、Chromeだと受け付けていたものがSafariだとダメと言われる

03:10:06 @aqz@p1.a9z.dev
icon

hvc1のデコード対応してない説

RE:
https://p1.a9z.dev/notes/9jd1ggi2ue

03:10:22 @aqz@p1.a9z.dev
2023-09-08 03:10:07 Posting とかぷる:xflest_chance:みんたろう tokaplmi@fle.st
icon

This account is not set to public on notestock.

03:16:49 @aqz@p1.a9z.dev
icon
Web site image
VideoDecoder.configure should not throw on unsupported codecs by youennf · Pull Request #16984 · WebKit/WebKit
03:16:56 @aqz@p1.a9z.dev
2023-09-08 02:58:01 Posting シュワ玉 syuwaaa@misskey.gg
icon

This account is not set to public on notestock.

03:17:34 @aqz@p1.a9z.dev
2023-09-01 09:34:47 Posting けれの帝国 kereno@misskey.io
icon

This account is not set to public on notestock.

03:19:56 @aqz@p1.a9z.dev
icon

TPで試してみたら治ってたわ

03:52:03 @aqz@p1.a9z.dev
icon

にしてもSafariのVideoDecoderの挙動って若干ヘンだな

03:57:09 @aqz@p1.a9z.dev
icon

SafariのVideoDecoder
・outputが時間順に発行されない
・outputが始まる時間がよくわからん

RE:
https://p1.a9z.dev/notes/9jd3acukv4

04:00:11 @aqz@p1.a9z.dev
icon

ていうかwritableが間に合わなかったreadableのチャンクってSafariだと普通にロストすんのか?

04:00:33 @aqz@p1.a9z.dev
2023-09-07 20:24:29 Posting :motimoti: のっち :role_illustrator: motimotinotie@misskey.io
icon

This account is not set to public on notestock.

16:56:07 @aqz@p1.a9z.dev
icon

TypeScriptは静的型付け言語なんか?

16:58:43 @aqz@p1.a9z.dev
icon

(hotwired/turboなんてライブラリ聞いたこともないんだけど)

17:34:06 @aqz@p1.a9z.dev
icon

TypeScript、JavaScriptとかいう線画に色塗りしてる感じでやってる

RE:
https://p1.a9z.dev/notes/9jdvanxcz4

17:35:31 @aqz@p1.a9z.dev
icon

@syuilo 観測すらしてなかった(してたとしてもTurbopackのことかなぐらいの感覚だったかも)