Leiti 15 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
607 MarkusTegelane Naljapäev 2025 | Ma käivitasin Visual Studio DVD plaadilt 0 2025-04-01 Ühel päeval, kui Visual Studio käivitumisel hangus, tekkis mul mõte - kuidas muuta Visual Studio käivitumine võimalikult aeglaseks? Selles videos leiame võimaliku vastuse sellele küsimusele paigaldades Visual Studio ülekirjutatavale DVD plaadile kõige aeglasemas sülearvutis, mis mu valduses on.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

♫ Muusika ♫
Kevin MacLeod - EDM Detection Mode
Kevin MacLeod - Mining by Moonlight
Kevin MacLeod - Spy Groove

? Lisainformatsioon ?
Failinimi: infinity2025.mp4
Renderdamise aeg: 12 minutit, 5 sekundit
Lindistamise aeg: 23 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.1.4, PaintDotNET, Windows 8.1, Visual Studio 2019/2022, Windows 11

? Video koostas: Markus Maal ?
© 2025 Markuse videod
1 1 0 1 https://www.youtube.com/watch?v=aUIoo6GF0YA 0 April Fools 2025 | I ran Visual Studio from a DVD disc Naljapäev 2025 | Ma käivitasin Visual Studio DVD plaadilt One day when Visual Studio froze during startup I had an idea - what is the slowest possible startup time for Visual Studio? In this video, I think we have found a possible answer to this by installing Visual Studio to a rewritable DVD disc and the slowest laptop I own.

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane-en.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

♫ Music ♫
Kevin MacLeod - EDM Detection Mode
Kevin MacLeod - Mining by Moonlight
Kevin MacLeod - Spy Groove

? Additional information ?
Filename: infinity2025.mp4
Render time: 12 minutes, 5 seconds
Recording time: 23 minutes, 59 seconds
Video card: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Software: DaVinci Resolve 19.1.4, PaintDotNET, Windows 8.1, Visual Studio 2019/2022, Windows 11

? Created by: Markus Maal ?
© 2025 Markuse videod
Ühel päeval, kui Visual Studio käivitumisel hangus, tekkis mul mõte - kuidas muuta Visual Studio käivitumine võimalikult aeglaseks? Selles videos leiame võimaliku vastuse sellele küsimusele paigaldades Visual Studio ülekirjutatavale DVD plaadile kõige aeglasemas sülearvutis, mis mu valduses on.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

♫ Muusika ♫
Kevin MacLeod - EDM Detection Mode
Kevin MacLeod - Mining by Moonlight
Kevin MacLeod - Spy Groove

? Lisainformatsioon ?
Failinimi: infinity2025.mp4
Renderdamise aeg: 12 minutit, 5 sekundit
Lindistamise aeg: 23 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.1.4, PaintDotNET, Windows 8.1, Visual Studio 2019/2022, Windows 11

? Video koostas: Markus Maal ?
© 2025 Markuse videod
infinity2025.mp4 Naljavideod Joke videos markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,visual studio,DVD-ROM,DVD+RW,DVD+R,DVD-R,DVD-RW,rewritable,optical media,optiline andmekandja,meme,slowest IDE,Microsoft Visual Studio (software) N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/607.jpg N/A N/A N/A N/A
591 MarkusTegelane Top 100 minu tehtud TrackMania rada - The Movie 0 2024-12-26 Selles videos näitan ja hindan 100 erinevat rada, mida ma olen teinud aastate jooksul erinevates TrackMania mängudes. See video pidi algselt välja tulema 2017. aasta märtsis, kuid mitmed tehnilised väljakutsed takistasid sel ajal video reaalsuseks saamist (peamiselt seoses kõvakettaruumiga).

See video avardab ka algset ideed, sest algselt tahtsin ainult näidata TMNF ja TMUF radasid, kuid selles videos näitan ka asju, mida ma tegin TrackMania² mängudes ja samuti uues TrackMania mängus.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

◙ Peatükid ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Lõputiitrid

? Lisainfo ?
Faili nimi: tm100.mp4
Renderdamise aeg: 3 tundi, 39 minutit, 58 sekundit
Protsessor: AMD Ryzen 7 5700X
Tarkvara: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Video koostas: Markus Maal ?
© 2024 Markuse videod
1 1 0 1 https://www.youtube.com/watch?v=Ru_FvMuFr5o 0 Top 100 TrackMania maps I've ever made - The Movie Top 100 minu tehtud TrackMania rada - The Movie In this video I'm showcasing and ranking 100 different tracks I've made in various TrackMania games over the years. The video was originally supposed to come out in March 2017, but several technical challenges prevented my from making the video back then (mainly related to very hard disk space).

This video expands on the original idea tough, since I originally only wanted to showcase TMNF and TMUF tracks, this video will also showcase stuff I've made in TrackMania² games as well as the new TrackMania game.

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane-en.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

◙ Chapters ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Credits

? Additional information ?
Filename: tm100.mp4
Render time: 3 hours, 39 minutes, 58 seconds
Processor: AMD Ryzen 7 5700X
Software: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Created by: Markus Maal ?
© 2024 Markuse videod
Selles videos näitan ja hindan 100 erinevat rada, mida ma olen teinud aastate jooksul erinevates TrackMania mängudes. See video pidi algselt välja tulema 2017. aasta märtsis, kuid mitmed tehnilised väljakutsed takistasid sel ajal video reaalsuseks saamist (peamiselt seoses kõvakettaruumiga).

See video avardab ka algset ideed, sest algselt tahtsin ainult näidata TMNF ja TMUF radasid, kuid selles videos näitan ka asju, mida ma tegin TrackMania² mängudes ja samuti uues TrackMania mängus.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

◙ Peatükid ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Lõputiitrid

? Lisainfo ?
Faili nimi: tm100.mp4
Renderdamise aeg: 3 tundi, 39 minutit, 58 sekundit
Protsessor: AMD Ryzen 7 5700X
Tarkvara: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Video koostas: Markus Maal ?
© 2024 Markuse videod
tm100.mp4 MarkuStation 1 MarkuStation 1 markustegelane,TheMarkusGuy,trackmania,trackmania (video game series),trackmania top 100,trackmania 2: canyon (video game),top 100,trackmania nations forever,trackmania random map,trackmania drift,trackmania speedrun,trackmania ice,trackmania club,trackmania best,trackmania 2021,trackmania ranked,movie,trackmania exchange,gaming,MarkuStation,trackmania 2: valley (video game),trackmania 2 lagoon,trackmania united forever,trackmania sunrise,stadium,coast,valley N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/591.jpg N/A /channel_db_lite/web/json/591.json N/A /channel_db_lite/web/stream/591.en.ass
580 Press any key to continue... Blinking caret animation 0 2024-09-03 Recreation of the blinking caret thing that you see in various operating system's text modes. 0 1 0 1 https://www.youtube.com/watch?v=aCF2wqpqnOY 0 Blinking caret animation Blinking caret animation Recreation of the blinking caret thing that you see in various operating system's text modes. Recreation of the blinking caret thing that you see in various operating system's text modes. BlinkBlink.mp4 Veateated Errors blink,caret,cursor,the blinky thing,startup error,boot error,startup failure,fail,error,freeze,hang,hang on boot,hang on startup,Windows 3.1 startup error,no error message,text mode,text display,no graphical display,no GUI,text only N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/580.jpg N/A /channel_db_lite/web/json/580.json N/A N/A
559 MarkusTegelane Identity crisis - What happened with this channel? 0 2024-01-28 You may have noticed that I changed my channel name at some point and then reverted that change less than a month later. This video explains what happened and why I did what I did...

?? EESTIKEELNE VERSIOON ??
https://www.youtube.com/watch?v=t0VD3yId38Q

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

♫ Music ♫
Geographer - Synergy
Kevin MacLeod - Pamgaea
ALBIS - New Land

? Additional information ?
Filename: Identiteedikriis_EN.mov
Render time: 15 minutes, 38 seconds
Video card: Gigabyte Geforce GTX 1650 4GB OC
Software: DaVinci Resolve 18.6, FFmpeg, VLC Player, GIMP, Garuda Linux, Inkscape, Audacity

? Created by: Markus Maal ?
© 2024 Markuse videod
0 0 0 1 https://www.youtube.com/watch?v=oW6es05CjcU 0 Identity crisis - What happened with this channel? Identity crisis - What happened with this channel? You may have noticed that I changed my channel name at some point and then reverted that change less than a month later. This video explains what happened and why I did what I did...

?? EESTIKEELNE VERSIOON ??
https://www.youtube.com/watch?v=t0VD3yId38Q

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

♫ Music ♫
Geographer - Synergy
Kevin MacLeod - Pamgaea
ALBIS - New Land

? Additional information ?
Filename: Identiteedikriis_EN.mov
Render time: 15 minutes, 38 seconds
Video card: Gigabyte Geforce GTX 1650 4GB OC
Software: DaVinci Resolve 18.6, FFmpeg, VLC Player, GIMP, Garuda Linux, Inkscape, Audacity

? Created by: Markus Maal ?
© 2024 Markuse videod
You may have noticed that I changed my channel name at some point and then reverted that change less than a month later. This video explains what happened and why I did what I did...

?? EESTIKEELNE VERSIOON ??
https://www.youtube.com/watch?v=t0VD3yId38Q

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

♫ Music ♫
Geographer - Synergy
Kevin MacLeod - Pamgaea
ALBIS - New Land

? Additional information ?
Filename: Identiteedikriis_EN.mov
Render time: 15 minutes, 38 seconds
Video card: Gigabyte Geforce GTX 1650 4GB OC
Software: DaVinci Resolve 18.6, FFmpeg, VLC Player, GIMP, Garuda Linux, Inkscape, Audacity

? Created by: Markus Maal ?
© 2024 Markuse videod
Identiteedikriis_EN.mov Info ja uudised Info and news markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/559.jpg N/A /channel_db_lite/web/json/559.json N/A N/A
561 Press any key to continue... Flipnic, but it's REALLY LOUD 0 2024-01-20 Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
0 1 0 1 https://www.youtube.com/watch?v=w4VzUiEuH10 0 Flipnic, but it's REALLY LOUD Flipnic, but it's REALLY LOUD Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
FlipnicButLoudMinified.mp4 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/561.jpg N/A /channel_db_lite/web/json/561.json N/A N/A
532 Press any key to continue... Menu re-ordering in Flipnic (Warning: Cursed!!!) [W.I.P.] 0 2023-03-14 So, I have decided to mess around with the MAINMENU.MLB file using cheat engine (since it gets loaded into RAM, I can mess with it basically in real time with exceptions).

I was successfully able to change the order of the menu options and the menu options, while maintaining the ability to linearly move straight up and down without suddenly jumping to another menu option. I was not able to change the action of each button yet, so the button actions are shifted upwards.

And just because I can, I decided to shift the exit button 0x100 units to the left.

Technical details, tutorial, and modified MAINMENU.MLB: https://docs.google.com/document/d/1HSP2JH3JfvSXh3FjCa6lXJYfjBHpNOsX6JfqYgwSBC8/edit?usp=sharing
0 1 0 1 https://www.youtube.com/watch?v=f7mQJwsqA-8 0 Menu re-ordering in Flipnic (Warning: Cursed!!!) [W.I.P.] . So, I have decided to mess around with the MAINMENU.MLB file using cheat engine (since it gets loaded into RAM, I can mess with it basically in real time with exceptions).

I was successfully able to change the order of the menu options and the menu options, while maintaining the ability to linearly move straight up and down without suddenly jumping to another menu option. I was not able to change the action of each button yet, so the button actions are shifted upwards.

And just because I can, I decided to shift the exit button 0x100 units to the left.

Technical details, tutorial, and modified MAINMENU.MLB: https://docs.google.com/document/d/1HSP2JH3JfvSXh3FjCa6lXJYfjBHpNOsX6JfqYgwSBC8/edit?usp=sharing
. cursed1.mp4 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/532.jpg N/A /channel_db_lite/web/json/532.json N/A N/A
501 MarkusTegelane Pidemed, lisakanali nime muutus ja muu (November 2022) [Info ja uudised] 0 2022-11-03 Selles videos räägin ma erinevatest asjadest, mis on seotud selle ja muude kanalitega, mida ma haldan. Videole on saadaval inglisekeelsed subtiitrid.

Teemad:
0:00 Intro
0:14 YouTube pidemed
0:47 Lisakanali nime muutus
1:31 The Chatroom (pakkfail)
2:50 Markuse arvuti meelelahutus - 2. hooaja lõpp
4:22 Kogukonna vahekaart
6:21 Outro

Lingid:
Blogipostitus: https://markustegelane.blogspot.com/2022/11/info-ja-uudised-kanali-pidemed.html
Veebisait: https://markustegelane.online
Juhuslik video: https://markustegelane.online/markustegelane/random/?c=mt
Ajaveeb: https://markustegelane.blogspot.com

Kanalid:
Markuse videod: https://www.youtube.com/@MarkusMaal
Põhikanal: https://www.youtube.com/@markusTegelane
Lisakanal: https://www.youtube.com/@markusTegelaneLite
Programmeerimiskanal: https://www.youtube.com/@hashMarkusTegelane
Markuse asjad: https://www.youtube.com/@markuseasjad
Press any key to continue: https://www.youtube.com/@PAKTC

Lisainfo:
Muusika: TrackTribe - A Night Alone, Riot - Newsroom
Failinimi: IANNOV2022_4.mp4
Monteerimistarkvara: DaVinci Resolve 18 (video), Audacity (heli)
Renderdamise aeg: 53 minutit, 52 sekundit
1 0 0 1 https://www.youtube.com/watch?v=jdRO8Rt6HDk 0 Handles, name change for secondary channel, and more (November 2022) [Info and news] Pidemed, lisakanali nime muutus ja muu (November 2022) [Info ja uudised] In this video, I talk about several things, which are going on with this channel and some other channels I manage. I speak in Estonian, but English subtitles are available, for those who don't understand this language.

Topics:
0:00 Intro
0:14 YouTube handles
0:47 Name change for secondary channel
1:31 The Chatroom (batch file)
2:50 Markus computer entertainment - end of season 2
4:22 Community tab
6:21 Outro

Links:
Blog post: https://markustegelane-en.blogspot.com/2022/11/info-and-news-channel-handles-name.html
Website: https://markustegelane.online
Random video: https://markustegelane.online/markustegelane/random/?c=mt
Blog: https://markustegelane-en.blogspot.com

Channels:
Markus' videos: https://www.youtube.com/@MarkusMaal
Main channel: https://www.youtube.com/@markusTegelane
Secondary channel: https://www.youtube.com/@markusTegelaneLite
Programming channel: https://www.youtube.com/@hashMarkusTegelane
Markus' stuff: https://www.youtube.com/@markuseasjad
Press any key to continue: https://www.youtube.com/@PAKTC

Other information:
Music: TrackTribe - A Night Alone, Riot - Newsroom
Raw filename: IANNOV2022_4.mp4
Editing software: DaVinci Resolve 18 (video), Audacity (audio)
Render time: 53 minutes, 52 seconds
Selles videos räägin ma erinevatest asjadest, mis on seotud selle ja muude kanalitega, mida ma haldan. Videole on saadaval inglisekeelsed subtiitrid.

Teemad:
0:00 Intro
0:14 YouTube pidemed
0:47 Lisakanali nime muutus
1:31 The Chatroom (pakkfail)
2:50 Markuse arvuti meelelahutus - 2. hooaja lõpp
4:22 Kogukonna vahekaart
6:21 Outro

Lingid:
Blogipostitus: https://markustegelane.blogspot.com/2022/11/info-ja-uudised-kanali-pidemed.html
Veebisait: https://markustegelane.online
Juhuslik video: https://markustegelane.online/markustegelane/random/?c=mt
Ajaveeb: https://markustegelane.blogspot.com

Kanalid:
Markuse videod: https://www.youtube.com/@MarkusMaal
Põhikanal: https://www.youtube.com/@markusTegelane
Lisakanal: https://www.youtube.com/@markusTegelaneLite
Programmeerimiskanal: https://www.youtube.com/@hashMarkusTegelane
Markuse asjad: https://www.youtube.com/@markuseasjad
Press any key to continue: https://www.youtube.com/@PAKTC

Lisainfo:
Muusika: TrackTribe - A Night Alone, Riot - Newsroom
Failinimi: IANNOV2022_4.mp4
Monteerimistarkvara: DaVinci Resolve 18 (video), Audacity (heli)
Renderdamise aeg: 53 minutit, 52 sekundit
IANNOV2022_4.mp4 Info ja uudised Info and news The Chatroom,markustegelane,update,uuendused,kanali uuendus,pidemed,YouTube handles,handle,pide,nime muutus,lite,markustegelane lite,markustegelane x,podcast https://odysee.com/@MarkusTegelane:8/handles,-name-change-for-secondary:c MarkusTegelane . 0 /channel_db_lite/web/thumbs/501.jpg N/A /channel_db_lite/web/json/501.json N/A /channel_db_lite/web/stream/501.en.ass
493 Press any key to continue... Loading a PS1 game [Real time capture \w disc seeking sounds] 0 2022-10-10 If you have ever owned a PS1 or any other early CD-based games console, you know very well that games take a very long time to load. One reason is due to the slower disc speed, another is due to the fact that game data is fragmented around the disc, so the laser assembly needs to seek around the disc to find the required data. This means that loading a game can take several minutes. This video demonstrates that.

Captured using a real console, which is outputting composite, which is connected into an HDMI upscaler, which then is connected to a capture device, which is connected to my computer, which saves the output into a video file. This video is, at least for most part, uncut, except for parts, where I navigate around in menus, insert the game disc, play, etc, but every load screen is uncut.

The game that is showcased in this video is Colin McRae Rally 2.0 (PS1, PAL version).

Timestamps:
0:00 Opening disc tray, removing existing disc, inserting another game disc, closing tray, power on
0:11 Power-on, disc check
0:15 BIOS screen
0:31 Exit BIOS screen
0:35 Copyright screen
2:35 Black screen
2:52 Codemasters FMV
3:01 Black screen
3:46 Intro FMV (cut)
4:08 Black screen
4:16 Title screen/language selection
4:30 Loading demo mode
5:34 Exit demo mode
6:09 Navigating menus
6:21 Loading service area
6:31 Loading single stage
6:50 Single stage gameplay (cut)
7:08 Exit single stage

P.S. At the beginning, the video is in mono. That's because I forgot to change my microphone into mono mode, so it was outputting only to one side, and I only realized that mid-recording.
0 1 0 1 https://www.youtube.com/watch?v=5RzOn7rjeD8 0 Loading a PS1 game [Real time capture \w disc seeking sounds] . If you have ever owned a PS1 or any other early CD-based games console, you know very well that games take a very long time to load. One reason is due to the slower disc speed, another is due to the fact that game data is fragmented around the disc, so the laser assembly needs to seek around the disc to find the required data. This means that loading a game can take several minutes. This video demonstrates that.

Captured using a real console, which is outputting composite, which is connected into an HDMI upscaler, which then is connected to a capture device, which is connected to my computer, which saves the output into a video file. This video is, at least for most part, uncut, except for parts, where I navigate around in menus, insert the game disc, play, etc, but every load screen is uncut.

The game that is showcased in this video is Colin McRae Rally 2.0 (PS1, PAL version).

Timestamps:
0:00 Opening disc tray, removing existing disc, inserting another game disc, closing tray, power on
0:11 Power-on, disc check
0:15 BIOS screen
0:31 Exit BIOS screen
0:35 Copyright screen
2:35 Black screen
2:52 Codemasters FMV
3:01 Black screen
3:46 Intro FMV (cut)
4:08 Black screen
4:16 Title screen/language selection
4:30 Loading demo mode
5:34 Exit demo mode
6:09 Navigating menus
6:21 Loading service area
6:31 Loading single stage
6:50 Single stage gameplay (cut)
7:08 Exit single stage

P.S. At the beginning, the video is in mono. That's because I forgot to change my microphone into mono mode, so it was outputting only to one side, and I only realized that mid-recording.
. PS1-seeking.mp4 Varia Miscellaneous N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/493.jpg N/A /channel_db_lite/web/json/493.json N/A N/A
480 Press any key to continue... TrackMania - Menu Music 0 2022-08-10 This is the main menu music from TrackMania. TrackMania is an arcade racing game franchise, which was first created in 2003. The goal in these games is to collect as many medals as possible. You can also make your own maps and play with others online. The game also has a very active competitive scene, where players try to beat each other's times in an attempt to hold the world record on that track.

That being said, this video was made just to make fun of Nadeo, for naming their latest game TrackMania, which is the same name they used for the first game (they started calling it "TrackMania Original" only after TrackMania Sunrise came out). And since you can't change history, I thought it would funny to confuse some people.
0 1 0 1 https://www.youtube.com/watch?v=BLuRLCSWIA8 0 . . This is the main menu music from TrackMania. TrackMania is an arcade racing game franchise, which was first created in 2003. The goal in these games is to collect as many medals as possible. You can also make your own maps and play with others online. The game also has a very active competitive scene, where players try to beat each other's times in an attempt to hold the world record on that track.

That being said, this video was made just to make fun of Nadeo, for naming their latest game TrackMania, which is the same name they used for the first game (they started calling it "TrackMania Original" only after TrackMania Sunrise came out). And since you can't change history, I thought it would funny to confuse some people.
. tmroll2.mp4 Muusika Music N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/480.jpg N/A /channel_db_lite/web/json/480.json N/A N/A
409 MarkusTegelane++ ascii2pixels - Convert ASCII text to pictures! 0 2022-02-06 This video showcases a cool tool I've made. It's called ascii2pixels. You can use it to convert ANY ascii text graphic in black and white to grayscale images. 1 1 0 1 https://www.youtube.com/watch?v=tEh0XZ37P00 0 . ascii2pixels - Teisenda ASCII tekst kujutisteks! . See video näitab lahedat tööriista, mida ma tegin. Selle nimi on ascii2pixels. Te saate kasutada seda IGA must-valge ascii teksti teisendada halliskaalal kujutisteks. ascii2pixels.mp4 Utilliidid Utilities ASCII,text encoding,ASCII art,batch file,batch scripting,C#,Microsoft Visual Studio,Microsoft .NET Framework,Windows 11,Portable Network Graphics,Graphics Interchange Format,Bitmap,raster graphics https://odysee.com/@hashMarkusTegelane:3/ascii2pixels:d MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/409.jpg N/A /channel_db_lite/web/json/409.json N/A N/A
390 MarkusTegelane TrackMania, aga ma muutsin selle lendamismänguks, võib-olla... 0 2021-08-29 Täiskiirusel sõidetav rada, mille ma tegin TrackMania Nations/United Forever mängus, kasutades TMUnlimiter mod-i.

Raja allalaadimine: https://united.tm-exchange.com/trackshow/6151690
1 0 0 1 https://www.youtube.com/watch?v=dH7uHVekj0w 0 TrackMania, but I turned it into a fullspeed flying game, I guess... TrackMania, aga ma muutsin selle lendamismänguks, võib-olla... A fullspeed track I made in TrackMania Nations/United Forever using the TMUnlimiter mod.

Track download: https://united.tm-exchange.com/trackshow/6151690
Täiskiirusel sõidetav rada, mille ma tegin TrackMania Nations/United Forever mängus, kasutades TMUnlimiter mod-i.

Raja allalaadimine: https://united.tm-exchange.com/trackshow/6151690
trackmaniaplane.mp4 MarkuStation 2 MarkuStation 2 TrackMania,planes,flying game,Nadeo,invisible blocks,TMUnlimiter,TrackMania Nations https://odysee.com/@MarkusTegelane:8/trackmania,-but-i-turned-it-into-a:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/390.jpg N/A /channel_db_lite/web/json/390.json N/A N/A
302 MarkusTegelane+ Klaviatuur - LED tuled lõpetasid töötamise // Keyboard - LED lights stopped working 1 2020-06-13 Nupud on endiselt funktsionaalsed, kuid tuled ei muutu. Seadme taaskäivitamine lahendas probleemi. // Buttons still work, but lights don't change. A reboot fixes this problem. 0 1 0 0 https://www.youtube.com/watch?v=2iT8E0lAdGo 0 . . . . N/A Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/302.jpg N/A /channel_db_lite/web/json/302.json N/A N/A
111 MarkusTegelane Uudised: Nime muutus ja nõuannete november (Full HD) 0 2016-11-06 [Videost on teavitatud avalikke tellijaid]
Selles videos räägin ma enda kanalil toimunud nime muutusest. Just nii! Ma olin enne Markus Maal ja nüüd olen MarkusTegelane. Peale nime muutmise muutsin ka kanali disaini (natuke modernsemaks) ja lisasin kanali logo video alla paremasse nurka, sest et miks mitte.

Nõuannete november on uus seeria, kus näitan teile arvuti nõuandeid ja õpetusi novembri kuu jooksul.

Veel linke:
Blogi: http://markusmaal.blogspot.com
Teine kanal: https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg
Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
1 0 0 1 https://www.youtube.com/watch?v=_FyylmO-3lA 0 News: Name change and November of tips (Full HD) Uudised: Nime muutus ja nõuannete november (Full HD) [Public subscribers have been notified about this video]
In this video I talk about the name change going on in my channel. That is right! I was previously known as Markus Maal and now I am TheMarkusGuy. I also changed my channel design (it is now a little more modern) and added channel logo to the bottom-right of the video, because why not.

November of tips is a new series where I show you computer tips and tricks within the November.

Other links:
Blog: http://markusmaalen.blogspot.com
Second channel: https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg
Markus's stuff (not in English yet): https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
[Videost on teavitatud avalikke tellijaid]
Selles videos räägin ma enda kanalil toimunud nime muutusest. Just nii! Ma olin enne Markus Maal ja nüüd olen MarkusTegelane. Peale nime muutmise muutsin ka kanali disaini (natuke modernsemaks) ja lisasin kanali logo video alla paremasse nurka, sest et miks mitte.

Nõuannete november on uus seeria, kus näitan teile arvuti nõuandeid ja õpetusi novembri kuu jooksul.

Veel linke:
Blogi: http://markusmaal.blogspot.com
Teine kanal: https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg
Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Untitled.mxf Info ja uudised Info and news Markus,Maal,Markus Maal,MarkusTegelane,MarkusTegelane+,Markus Maal+,bränding,Uudised,branding,news,name change,november,tips,nõuanded https://odysee.com/@MarkusTegelane:8/uudised-nime-muutus-ja-n-uannete:8 MarkusTegelane . 1 /channel_db_lite/web/thumbs/111.jpg N/A /channel_db_lite/web/json/111.json N/A N/A
41 MarkusTegelane Batch file : The Chatroom [UPDATE] [May 2015] 0 2015-05-05 My made batch file called The Chatroom has got a big update. Watch video if you want to know more... 1 1 0 1 https://www.youtube.com/watch?v=c8RpFrHMVas 0 . Pakkfail : The Chatroom (jututuba) [UUENDUS] [Mai 2015] . Minu enda loodud pakkfail nimega "The Chatroom" (jututuba) on saanud suure uuenduse. Vaadake videot, kui soovite rohkem teada... The Chatroom May 2015 update.mp4 Pakkfailid Batch files Batch File (File Format),Computer File,Update,Windows,Maker,Chatroom,The Chatroo,Markus Maal,Room,Living,People,Bed,Software (Industry),Bedroom,Tub,Locker,Software (album),Stone,Cold,Bath,Logging Time,Industry (Organization Sector),Meet,Austin,Steve,Lap,Quick,Updates,Bypass,Post,Update (Jane Zhang Album),Weekly,Zhang Liangying (Musical Artist),Loss,End,Weight,Band,Greet,The Band (Musical Group),Steve Austin,Week Part,Lap Dance,Cold Steve https://odysee.com/@MarkusTegelane:8/batch-file-the-chatroom-update-may-2015:4 MarkusTegelane . 1 /channel_db_lite/web/thumbs/41.jpg N/A /channel_db_lite/web/json/41.json N/A N/A