Leiti 5 vastet.

ID Kanal Video Kustutatud Kuupäev Kirjeldus Subtiitrid Avalik Ülekanne HD URL PRIVATE TitleMUI_en TitleMUI_et KirjeldusMUI_en KirjeldusMUI_et Filename Category CategoryMUI_en Tags OdyseeURL KanalMUI_en KanalMUI_et Translated has_thumbnail local_stream ytdlp_meta est_subs eng_subs
616 Press any key to continue... Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] 0 2025-04-26 Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
0 1 0 1 https://www.youtube.com/watch?v=FBDma-tPlJw 0 Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
2025-04-26 16-12-25.mkv Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/616.jpg N/A N/A N/A N/A
562 Press any key to continue... Pac-Man Rally (PS2 FMV/BGM Rip) 0 2024-02-02 Background music and intro movie from Pac-Man Rally (PS2). This is the EU name for this game, everywhere else it's known as "Pac-Man World Rally". Everything you hear and see in the video has been directly extracted and converted from game files.

Chapters:
0:00 Arctic Iceberg (ArticIc.mib)
2:01 Award Ceremony/Artic Iceberg (Award.mib)
3:58 Canyon Crusade (CanyonCr.mib)
5:50 Cloud Garden (CloudGar.mib)
8:04 Toc-Man's Factory (DarkFact.mib)
10:01 Funhouse of Terror (Funhouse.mib)
11:58 Ghost Mansion (GhostMan.mib)
13:58 Intro (Intro.pss)
15:04 Jungle Safari (JungleSa.mib)
17:07 Galactic Outpost a.k.a. Lunar Launch (LunarLau.mib)
19:04 Molten Mountain (MoltenMo.mib)
21:03 Pirate Cove (PirateCo.mib)
22:52 Retro Maze/Menu (RetroMaz.mib)
25:02 Rolling Hills (RollingH.mib)
26:58 Spookys Castle (SpookysC.mib)
29:01 Subterranean Speedway? (Subterra.mib)
31:26 Winding Wetlands (WindingW.mib)
33:22 Menu music? (oldMidi.mib)
35:32 Unknown (songSnip.mib)

Technical info:

Intro movie:
Container .PSS
Format: PS2 Movie Audio Stream
Codec: MPEG-1/2
Resolution: 640x448
Framerate: 29.97 fps
Audio: Uncompressed PCM (freq. 48000 Hz, interleave 200 bytes, 1 audio stream)

Background music (header files)
Container .MIH
0x00 - 0x03 = Length of header
0x04 = Unknown
0x05 - 0x07 = Length of sample file ?
0x08 - 0x0B = Channels (e.g. 1 = mono, 2 = stereo)
0x0C - 0x0F = Audio frequency
0x10 - 0x13 = Interleave
0x14 - 0x17 = Unknown (Buffer size? Loop count?)
0x18 - 0x3F = Empty space

Background music (samples)
Container .MIB
Format: Compressed Sony ADPCM audio
Interleave, frequency, channels = Based on corresponding header file
0 1 0 1 https://www.youtube.com/watch?v=raX-LEe08b4 0 Pac-Man Rally (PS2 FMV/BGM Rip) Pac-Man Rally (PS2 FMV/BGM Rip) Background music and intro movie from Pac-Man Rally (PS2). This is the EU name for this game, everywhere else it's known as "Pac-Man World Rally". Everything you hear and see in the video has been directly extracted and converted from game files.

Chapters:
0:00 Arctic Iceberg (ArticIc.mib)
2:01 Award Ceremony/Artic Iceberg (Award.mib)
3:58 Canyon Crusade (CanyonCr.mib)
5:50 Cloud Garden (CloudGar.mib)
8:04 Toc-Man's Factory (DarkFact.mib)
10:01 Funhouse of Terror (Funhouse.mib)
11:58 Ghost Mansion (GhostMan.mib)
13:58 Intro (Intro.pss)
15:04 Jungle Safari (JungleSa.mib)
17:07 Galactic Outpost a.k.a. Lunar Launch (LunarLau.mib)
19:04 Molten Mountain (MoltenMo.mib)
21:03 Pirate Cove (PirateCo.mib)
22:52 Retro Maze/Menu (RetroMaz.mib)
25:02 Rolling Hills (RollingH.mib)
26:58 Spookys Castle (SpookysC.mib)
29:01 Subterranean Speedway? (Subterra.mib)
31:26 Winding Wetlands (WindingW.mib)
33:22 Menu music? (oldMidi.mib)
35:32 Unknown (songSnip.mib)

Technical info:

Intro movie:
Container .PSS
Format: PS2 Movie Audio Stream
Codec: MPEG-1/2
Resolution: 640x448
Framerate: 29.97 fps
Audio: Uncompressed PCM (freq. 48000 Hz, interleave 200 bytes, 1 audio stream)

Background music (header files)
Container .MIH
0x00 - 0x03 = Length of header
0x04 = Unknown
0x05 - 0x07 = Length of sample file ?
0x08 - 0x0B = Channels (e.g. 1 = mono, 2 = stereo)
0x0C - 0x0F = Audio frequency
0x10 - 0x13 = Interleave
0x14 - 0x17 = Unknown (Buffer size? Loop count?)
0x18 - 0x3F = Empty space

Background music (samples)
Container .MIB
Format: Compressed Sony ADPCM audio
Interleave, frequency, channels = Based on corresponding header file
Background music and intro movie from Pac-Man Rally (PS2). This is the EU name for this game, everywhere else it's known as "Pac-Man World Rally". Everything you hear and see in the video has been directly extracted and converted from game files.

Chapters:
0:00 Arctic Iceberg (ArticIc.mib)
2:01 Award Ceremony/Artic Iceberg (Award.mib)
3:58 Canyon Crusade (CanyonCr.mib)
5:50 Cloud Garden (CloudGar.mib)
8:04 Toc-Man's Factory (DarkFact.mib)
10:01 Funhouse of Terror (Funhouse.mib)
11:58 Ghost Mansion (GhostMan.mib)
13:58 Intro (Intro.pss)
15:04 Jungle Safari (JungleSa.mib)
17:07 Galactic Outpost a.k.a. Lunar Launch (LunarLau.mib)
19:04 Molten Mountain (MoltenMo.mib)
21:03 Pirate Cove (PirateCo.mib)
22:52 Retro Maze/Menu (RetroMaz.mib)
25:02 Rolling Hills (RollingH.mib)
26:58 Spookys Castle (SpookysC.mib)
29:01 Subterranean Speedway? (Subterra.mib)
31:26 Winding Wetlands (WindingW.mib)
33:22 Menu music? (oldMidi.mib)
35:32 Unknown (songSnip.mib)

Technical info:

Intro movie:
Container .PSS
Format: PS2 Movie Audio Stream
Codec: MPEG-1/2
Resolution: 640x448
Framerate: 29.97 fps
Audio: Uncompressed PCM (freq. 48000 Hz, interleave 200 bytes, 1 audio stream)

Background music (header files)
Container .MIH
0x00 - 0x03 = Length of header
0x04 = Unknown
0x05 - 0x07 = Length of sample file ?
0x08 - 0x0B = Channels (e.g. 1 = mono, 2 = stereo)
0x0C - 0x0F = Audio frequency
0x10 - 0x13 = Interleave
0x14 - 0x17 = Unknown (Buffer size? Loop count?)
0x18 - 0x3F = Empty space

Background music (samples)
Container .MIB
Format: Compressed Sony ADPCM audio
Interleave, frequency, channels = Based on corresponding header file
pmr.mov Muusika Music N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/562.jpg N/A /channel_db_lite/web/json/562.json N/A N/A
550 Press any key to continue... Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] 0 2023-10-01 This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS
1 1 0 1 https://www.youtube.com/watch?v=ZaA8-H71-3U 0 Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS.PSS (NTSC-J)
This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS.PSS (NTSC-J)
FlipnicFMVfullquality.mp4 FMV klipid FMV clips Flipnic,pinball,PlayStation,PlayStation 2,game over,cutscene,FMV,full motion video,PSS,playstation stream,PAL,congratulations,Lisle Wilkerson,Randy Goins,Lemmy Constantine,no camera,electromechanical game simulator,poisonous,pinball is not dead,new game machine,van gogh,UFO,aliens,flying saucer,flamingo,monkey,freeze over,steel ball,weird,surreal,biology,optics,metallurgy,geometry,theology,evolution,puzzle,multiball,see you again,skeleton,skull,invasion,omg,tilt N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/550.jpg N/A /channel_db_lite/web/json/550.json N/A N/A
542 Press any key to continue... BuzzRod: Fishing Fantasy [PS2 BGM SF2+MIDI Conversion] 0 2023-06-04 I converted the background music used in BuzzRod: Fishing Fantasy to SF2 and MIDI formats. Each track is made of 2 parts (with exceptions): the beginning and the loop. For this video, I play the beginning part and then the loop part 10 times, creating extended versions of each track. I also display some of the textures from the game in this video.

Download: https://drive.google.com/file/d/12GCyMugomj9kZtRL3WYaZFoqCDjWvSHA/view?usp=sharing

Chapters:
0:00 Title screen (TITLE.SQ)
7:21 Options/Load/Save (OPTION.SQ)
16:38 Opening cutscene (OE_01.SQ)
24:01 Replay cutscene (OE_02.SQ)
31:48 Ending credits (OE_03.SQ)
39:18 Unknown (BATTLE.SQ)
53:06 Fish battle (BATTLE1.SQ)
57:25 Congratulations (FANFARE.SQ)
59:51 Congratulations alt. (FANFARE1.SQ)
1:02:19 Fish get/Stage clear (FANFARE2.SQ)
1:04:57 The Lost Ruins (MAP_00.SQ)
1:15:53 The Missing Jungle (MAP_01.SQ)
1:21:01 The Big Tree (MAP_02.SQ)
1:36:26 The Dish Pond (MAP_03.SQ)
1:43:21 The Haunted Cave (MAP_04.SQ)
1:54:47 The Bush River (MAP_05.SQ)
2:04:57 The Pocket Sea (MAP_07.SQ)
2:12:38 The Last Jungle (MAP_08.SQ)
0 1 0 1 https://www.youtube.com/watch?v=FCJHOQe-feA 0 BuzzRod: Fishing Fantasy [PS2 BGM SF2+MIDI Conversion] BuzzRod: Fishing Fantasy [PS2 BGM SF2+MIDI Conversion] I converted the background music used in BuzzRod: Fishing Fantasy to SF2 and MIDI formats. Each track is made of 2 parts (with exceptions): the beginning and the loop. For this video, I play the beginning part and then the loop part 10 times, creating extended versions of each track. I also display some of the textures from the game in this video.

Download: https://drive.google.com/file/d/12GCyMugomj9kZtRL3WYaZFoqCDjWvSHA/view?usp=sharing

Chapters:
0:00 Title screen (TITLE.SQ)
7:21 Options/Load/Save (OPTION.SQ)
16:38 Opening cutscene (OE_01.SQ)
24:01 Replay cutscene (OE_02.SQ)
31:48 Ending credits (OE_03.SQ)
39:18 Unknown (BATTLE.SQ)
53:06 Fish battle (BATTLE1.SQ)
57:25 Congratulations (FANFARE.SQ)
59:51 Congratulations alt. (FANFARE1.SQ)
1:02:19 Fish get/Stage clear (FANFARE2.SQ)
1:04:57 The Lost Ruins (MAP_00.SQ)
1:15:53 The Missing Jungle (MAP_01.SQ)
1:21:01 The Big Tree (MAP_02.SQ)
1:36:26 The Dish Pond (MAP_03.SQ)
1:43:21 The Haunted Cave (MAP_04.SQ)
1:54:47 The Bush River (MAP_05.SQ)
2:04:57 The Pocket Sea (MAP_07.SQ)
2:12:38 The Last Jungle (MAP_08.SQ)
I converted the background music used in BuzzRod: Fishing Fantasy to SF2 and MIDI formats. Each track is made of 2 parts (with exceptions): the beginning and the loop. For this video, I play the beginning part and then the loop part 10 times, creating extended versions of each track. I also display some of the textures from the game in this video.

Download: https://drive.google.com/file/d/12GCyMugomj9kZtRL3WYaZFoqCDjWvSHA/view?usp=sharing

Chapters:
0:00 Title screen (TITLE.SQ)
7:21 Options/Load/Save (OPTION.SQ)
16:38 Opening cutscene (OE_01.SQ)
24:01 Replay cutscene (OE_02.SQ)
31:48 Ending credits (OE_03.SQ)
39:18 Unknown (BATTLE.SQ)
53:06 Fish battle (BATTLE1.SQ)
57:25 Congratulations (FANFARE.SQ)
59:51 Congratulations alt. (FANFARE1.SQ)
1:02:19 Fish get/Stage clear (FANFARE2.SQ)
1:04:57 The Lost Ruins (MAP_00.SQ)
1:15:53 The Missing Jungle (MAP_01.SQ)
1:21:01 The Big Tree (MAP_02.SQ)
1:36:26 The Dish Pond (MAP_03.SQ)
1:43:21 The Haunted Cave (MAP_04.SQ)
1:54:47 The Bush River (MAP_05.SQ)
2:04:57 The Pocket Sea (MAP_07.SQ)
2:12:38 The Last Jungle (MAP_08.SQ)
FishingFantasyOSTrip.mp4 Muusika Music N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/542.jpg N/A /channel_db_lite/web/json/542.json N/A N/A
486 Press any key to continue... (Almost) All MIDI songs [Microsoft Clip Organizer] 0 2022-08-31 Microsoft Clip Organizer was a clip art organizing software, which allowed users to find drawings, photographs, sounds, videos, and other media clips to include in presentations, publications, and other Office documents. It cam with a variety of stock media clips and offered more selection on the Microsoft Office Online website.
(source: https://en.wikipedia.org/wiki/Microsoft_Office_shared_tools#Clip_Organizer)

Among these stock media clips, were several MIDI files, which are being played in this vdieo. I used VLC Media Player and FluidSynth with a Microsoft GS Wavetable Synth soundfont to convert these into wave files, which I am playing with a simple batch script.
0 1 0 1 https://www.youtube.com/watch?v=9XY7dqdFe7A 0 . . Microsoft Clip Organizer was a clip art organizing software, which allowed users to find drawings, photographs, sounds, videos, and other media clips to include in presentations, publications, and other Office documents. It cam with a variety of stock media clips and offered more selection on the Microsoft Office Online website.
(source: https://en.wikipedia.org/wiki/Microsoft_Office_shared_tools#Clip_Organizer)

Among these stock media clips, were several MIDI files, which are being played in this vdieo. I used VLC Media Player and FluidSynth with a Microsoft GS Wavetable Synth soundfont to convert these into wave files, which I am playing with a simple batch script.

* Thumbnail graphics *
Midi icons created by Dimitry Miroliubov - Flaticon (https://www.flaticon.com/free-icons/midi)
Clip Organizer window illustration from: https://bettersolutions.com/powerpoint/illustrations/clip-organiser.htm

* Other links *
Batch file: https://pastebin.com/8cHWTR4b
Original MIDI files are available on archive.org, under the Microsoft Clip Art archive: https://archive.org/download/MS_Clipart_Collection (almost all of the songs are from this archive, except for Techno Dance, which I had saved myself)

* Timestamps *
0:00 Intro
00:03 Kalimba Open
00:06 Classical Open
00:10 Glitter Open
00:15 Heavy Metal Open
00:21 Music Box Open
00:28 Weather Open
00:35 Techno Open
00:42 Light Rock Open
00:49 Reggae Open
00:56 Happy Open
01:04 Military Open
01:12 Big Glitz Intro
01:21 Pizzicato Open
01:30 Christmas Open
01:39 Samba Open
01:48 New Age Open
01:57 Children Open
02:06 Sad Open
02:16 Timpani Open
02:26 Sports Open
02:36 Nature Open
02:47 Royal Open
02:58 Jazz Open
03:11 A Tisket Song
03:26 Minor Waltz Trad
03:41 Sneaky Music
03:56 Minor Chord Trad
04:12 Pop Goes
04:29 Hallelujah
04:50 Conveyor Music
05:17 Retail Jazz
05:44 Mystery Reveal
06:12 Lounge Music
06:41 Urban Pop Tune
07:10 Hero March Part
07:39 Cool Low Jazz
08:08 Jazz Jingles
08:38 architecture
09:08 Playful Game
09:38 Chime Patterns
10:08 Hipster Jazz
10:38 Be-Bop Underscore
11:08 Village Theme
11:38 Be-Bop Jazz
12:08 Sports Drive
12:38 Marketing Music
13:09 Elegant Rondo
13:40 government
14:11 Banking Theme
14:43 Disco Jingle
15:15 African Rhythm
15:47 Creep Underscore
16:19 Halloween Creep
16:51 Tech Underscore
17:23 steady beat
17:55 Cute Funny Bounce
18:27 Global Adventure
18:59 Weather Music
19:31 Mystery Music
20:03 Soft Groove
20:35 City Build Music
21:07 Global Underscore
21:39 Subdued Joy
22:12 Baroque Birthday
22:45 Teen Rock Ballad
23:18 Funky Kids Music
23:51 Slow Electrobeat
24:24 Communication Underscore
24:58 Bill Bailey Home
25:32 Heavy Underscore
26:06 Japanese Texture
26:41 Latin shakers
27:16 Game Atmosphere
27:51 Roman March
28:26 Simple New Age
29:02 Technobop
29:38 Spin Theme
30:14 Techno Dance
30:51 Country Jingles
31:29 Minor Jingles
32:08 Sexy Thing
32:47 Indian Meditate
33:27 African Pop
34:07 Gentle Nature
34:47 Fun Sparkly Jig
35:28 wholesale
36:12 Rock Of Ages
36:57 Lets Be Friends
37:43 communications
38:30 agriculture
39:18 Walking Bass
40:09 Indian Dance
41:00 Slow Latin March
41:52 Silent Night
42:44 Marine Hymn
43:36 Island Dance
44:28 Caribbean Dance 1
45:21 Jewish Dance
46:15 Caribbean Dance 2
47:09 Transportation
48:04 Sad Japan Song
49:00 China New Year
49:56 Indian Sway (2)
50:53 Antic Spirits
51:50 Halloween Dance
52:47 Sad Church Organ
53:45 Joy To The World
54:43 African Chase
55:41 Kwanzaa March
56:40 Tricky Zone
57:39 Greek Waltz 1
58:39 Jamaica Bounce 2
59:39 Blues
01:00:39 Suspenseful
01:01:39 Japanese study
01:02:39 Low Organ Theme
01:03:39 Mexican Dance
01:04:40 Auld Lang Syne1
01:05:42 Greek Waltz 2
01:06:44 Weather Underscore
01:07:46 Angels Heard Hi
01:08:49 Light Activity
01:09:52 Turkey In Straw
01:10:55 Chanukah Music
01:11:58 Parisian Waltz
01:13:03 China Celebrate
01:14:08 Eight Days
01:15:15 Hark Herald
01:16:23 Jamaican Rhythm
01:17:32 Thankful People
01:18:41 Little Bethlehem
01:19:54 Caissons Rolling
01:21:07 Hanukkah Song
. 2022-08-31 17-12-44.mkv Muusika Music Microsoft Office,MIDI sequence,MIDI,.mid,PowerPoint MIDIs,Publisher MIDIs,Clip Organizer,Microsoft Office shared tools,Microsoft Clip Organizer https://odysee.com/@Press_any_key_to_continue:2/MSClipOrganizerMIDI:9 Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/486.jpg N/A /channel_db_lite/web/json/486.json N/A N/A