| itag Code | Container | Content | Resolution | Bitrate | Range | VR / 3D |
|---|---|---|---|---|---|---|
| 5 | flv | audio/video | 240p | - | - | - |
| 6 | flv | audio/video | 270p | - | - | - |
| 17 | 3gp | audio/video | 144p | - | - | - |
| 18 | mp4 | audio/video | 360p | - | - | - |
| 22 | mp4 | audio/video | 720p | - | - | - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import lz4 | |
| import re | |
| import StringIO | |
| import struct | |
| import urllib2 | |
| BASEURL = "http://storage.game.starlight-stage.jp" | |
| def fetch_res_ver(): | |
| response = urllib2.urlopen("https://starlight.kirara.ca/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import lz4.block | |
| import re | |
| import StringIO | |
| import struct | |
| import urllib2 | |
| BASEURL = "http://storage.game.starlight-stage.jp" | |
| def fetch_res_ver(): | |
| response = urllib2.urlopen("https://starlight.kirara.ca/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command] | |
| @="\"C:\\Program Files\\PowerShell\\6.0.3\\pwsh.exe\" -noLogo -ExecutionPolicy unrestricted -file \"%1\"" | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\DefaultIcon] | |
| @="\"C:\\Program Files\\PowerShell\\6.0.3\\pwsh.exe\",0" | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\ShellEx\DropHandler] | |
| @="{60254CA5-953B-11CF-8C96-00AA00B8708C}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Abema TV Download Script | |
| # | |
| # require streamlink | |
| # 作品ページ: https://abema.tv/video/title/{作品ID} | |
| # 各話ページ: https://abema.tv/video/episode/{作品ID}_s1_p{話数ID} | |
| # チャンネル見逃し配信: https://abema.tv/channels/abema-anime-2(チャンネルID)/slots/{動画ID} | |
| # 無料もののみ またその判定はしていない。トークンを有料垢にすれば多分動く | |
| # ./abemadl.sh URL {-f|-t title} | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| cd %~dp0 | |
| rem 本batをkunio01.bin~kunio11_prg.binと同一の適当なフォルダ内に移動後、起動 | |
| echo 4E 45 53 1A 08 00 21 00 00 00 00 00 00 00 00 00>kunio01_header.txt | |
| echo 4E 45 53 1A 08 10 10 00 00 00 00 00 00 00 00 00>kunio02_header.txt | |
| echo 4E 45 53 1A 08 10 41 00 00 00 00 00 00 00 00 00>kunio03_header.txt | |
| echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio04_header.txt | |
| echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio05_header.txt |
こんにちは、knewjadeです。 今回、HATETIRSで289 linesまで到達することができました。動画はこちら(2022-11-26時点のWorld Recordでした。現在では更新されています。 → David&Felipeの記事)
ここでは、その結果を得るためのアプローチを説明していきたいと思います。
「そもそもHATETRISとは?」という方は、こちらをご参照ください。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <fstream> | |
| #include <string> | |
| int processdata(unsigned char *InData, unsigned char *OutData, int filedatasize) // OutData=0 to get size | |
| { | |
| int CurrIn = 0x4; //Skip size | |
| int CurrOut = 0; | |
| while (CurrIn < filedatasize) | |
| { | |
| int Code = InData[CurrIn++]; |