Skip to content

Commit

Permalink
added support for videos and a few games
Browse files Browse the repository at this point in the history
  • Loading branch information
RenanGreca committed Oct 27, 2017
1 parent 1308563 commit 8f236ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion game_ids.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

"993B0B446253E7FDAAC3C1A7681F46FE": "Fast RMX",

"5B12FFF1991C5F076F945A1D8DA64BDF": "Golf Story",

"BB278FDC5DD434CF8F30F224CFBF517A": "Has-Been Heroes",
"EA167CCACA37E364FF7957C68F12AA0E": "Human Resource Machine",

Expand All @@ -40,6 +42,7 @@
"0585E865DFB68B5298F19360A730EDB3": "Puyo Puyo Tetris",

"4CE9BA887E04FB8D36B745ECC8660DE6": "Rayman Legends Definitive Edition - Demo",
"11260164DFCCB4C1980A116D57B6C9F9": "Rocket Fist",

"10913F964FE64B3373593633781B4FA9": "Severed",
"65590FD04B4DF51BB1D8C39A50C8376C": "Shantae Half-Genie Hero",
Expand All @@ -55,7 +58,10 @@
"CBA841B50A92A904E313AE06DF4EF71A": "Splatoon 2",
"397A963DA4660090D65D330174AC6B04": "Splatoon 2",
"96794F2558A5B75BC0DBCC69AA0119EE": "Super Bomberman R",
"8AEDFF741E2D23FBED39474178692DAF": "Super Mario Odyssey",

"F1C11A22FAEE3B82F21B330E1B786A39": "The Legend of Zelda Breath of the Wild",
"23C8C1366F9A2FCCE85255D7889D3412": "Tumbleseed"
"23C8C1366F9A2FCCE85255D7889D3412": "Tumbleseed",

"404652E38014828AC0ED1A3EE2F1DEA3": "VOEZ - Demo"
}
2 changes: 1 addition & 1 deletion organize_screenshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def list_images(dir):
r = []
for root, dirs, files in os.walk(dir):
for name in files:
if "jpg" in name:
if "jpg" in name or "mp4" in name:
r.append(os.path.join(root, name))
return r

Expand Down

0 comments on commit 8f236ef

Please sign in to comment.