Leiti 43 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
589 MarkusTegelane Vaatame esimesi MarkusTegelane videoid (feat. kadunud meedia) [1. osa] 0 2024-12-20 Selles videos vaatan esimesi enda tehtud YouTube videoid, mille laadisin üles vahemikus 2013-2015. Räägin videote tegemis protsessist, miks ma üldse nad tegin ja muudest asjadest, mida tahan lisada.

Kui teid huvitab mu kanali ajalugu, siis "Markus Maal - läbi nende aastate" räägib ka videotest, mida ma tegin enne YouTube kanali tegemist (nn klassikaline ajastu): https://www.youtube.com/watch?v=CTBuIM4fQeE

⏰ Peatükid ⏰
0:00 Sissejuhatus
2:58 2013
3:36 TrackMania Foreveri rajad
16:26 TrackMania lahedad rajad
29:17 ManiaPlanet rajad
38:36 TrackMania rally rajad
52:45 Tom läks lolliks
54:07 2014
54:37 Talking Ben - Krooksutamine aeg luubis
55:25 Kuidas näha graafikakaardi informatsiooni?
58:26 TrackMania kokkupõrked
1:00:22 Windows XP tootetugi on lõppenud
1:09:00 Batch game: Movement Batch
1:12:28 Kuidas panna arvuti sunniviisiliselt näitama sinist ekraani?
1:15:14 2015
1:18:00 Minu uus YouTube intro (1024p)
1:20:39 @rebane2001 loodud intro
1:22:39 Milline võiks olla mu järgmine video?
1:23:47 Movement Batch 200 views special update
1:29:26 Markus mängib I - Windows 7 mängud [VAATAJATE OTSUS]
1:31:20 Kuidas näha graafikakaardi informatsiooni Windows 7 puhul?
1:32:52 Kuidas näha arvuti põhjalikku informatsiooni?
1:39:42 Mida võib pudel teha? (Talking Ben)
1:41:08 Crashing Windows
1:45:20 Kuidas teha minu sarnast Movement Batch mängu?
1:52:01 Erinevad Windowsi veateateekraanid
2:00:08 Kass tahab peeru süüa

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

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

? Lisainfo ?
Faili nimi: lookback1.mp4
Renderdamise aeg: 27 minutit, 2 sekundit
Renderdatud 2020 M1 Macbook Pro sülearvutis
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, macOS Seqouia

? Video koostas: Markus Maal ?
© 2024 Markuse videod
0 1 0 1 https://www.youtube.com/watch?v=o7NkgNw52o8 0 Watching first MarkusTegelane videos (feat. lost media) [Part 1] Vaatame esimesi MarkusTegelane videoid (feat. kadunud meedia) [1. osa] In this video I'm looking back at the first videos I've ever uploaded to YouTube from the 2013-2015 range. I'll talk about the process of making these videos, why they even got made and other stuff I just want to add to the video.

Note. This video currently has no English subtitles available and is intended for audiences who can understand Estonian. Subtitles may come later, however since this is a very long video, it might take a while for me to make them.

⏰ Chapters ⏰
0:00 Introduction
2:58 2013
3:36 TrackMania Foreveri rajad
16:26 TrackMania lahedad rajad
29:17 ManiaPlanet rajad
38:36 TrackMania rally rajad
52:45 Tom läks lolliks
54:07 2014
54:37 Talking Ben - Krooksutamine aeg luubis
55:25 Kuidas näha graafikakaardi informatsiooni?
58:26 TrackMania kokkupõrked
1:00:22 Windows XP tootetugi on lõppenud
1:09:00 Batch game: Movement Batch
1:12:28 Kuidas panna arvuti sunniviisiliselt näitama sinist ekraani?
1:15:14 2015
1:18:00 Minu uus YouTube intro (1024p)
1:20:39 @rebane2001 loodud intro
1:22:39 Milline võiks olla mu järgmine video?
1:23:47 Movement Batch 200 views special update
1:29:26 Markus mängib I - Windows 7 mängud [VAATAJATE OTSUS]
1:31:20 Kuidas näha graafikakaardi informatsiooni Windows 7 puhul?
1:32:52 Kuidas näha arvuti põhjalikku informatsiooni?
1:39:42 Mida võib pudel teha? (Talking Ben)
1:41:08 Crashing Windows
1:45:20 Kuidas teha minu sarnast Movement Batch mängu?
1:52:01 Erinevad Windowsi veateateekraanid
2:00:08 Kass tahab peeru süüa

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

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

? Additional information ?
Filename: lookback1.mp4
Render time: 27 minutes, 2 seconds
Renderded on 2020 M1 Macbook Pro
Software: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, macOS Seqouia

? Created by: Markus Maal ?
© 2024 Markuse videod
Selles videos vaatan esimesi enda tehtud YouTube videoid, mille laadisin üles vahemikus 2013-2015. Räägin videote tegemis protsessist, miks ma üldse nad tegin ja muudest asjadest, mida tahan lisada.

Kui teid huvitab mu kanali ajalugu, siis "Markus Maal - läbi nende aastate" räägib ka videotest, mida ma tegin enne YouTube kanali tegemist (nn klassikaline ajastu): https://www.youtube.com/watch?v=CTBuIM4fQeE

⏰ Peatükid ⏰
0:00 Sissejuhatus
2:58 2013
3:36 TrackMania Foreveri rajad
16:26 TrackMania lahedad rajad
29:17 ManiaPlanet rajad
38:36 TrackMania rally rajad
52:45 Tom läks lolliks
54:07 2014
54:37 Talking Ben - Krooksutamine aeg luubis
55:25 Kuidas näha graafikakaardi informatsiooni?
58:26 TrackMania kokkupõrked
1:00:22 Windows XP tootetugi on lõppenud
1:09:00 Batch game: Movement Batch
1:12:28 Kuidas panna arvuti sunniviisiliselt näitama sinist ekraani?
1:15:14 2015
1:18:00 Minu uus YouTube intro (1024p)
1:20:39 @rebane2001 loodud intro
1:22:39 Milline võiks olla mu järgmine video?
1:23:47 Movement Batch 200 views special update
1:29:26 Markus mängib I - Windows 7 mängud [VAATAJATE OTSUS]
1:31:20 Kuidas näha graafikakaardi informatsiooni Windows 7 puhul?
1:32:52 Kuidas näha arvuti põhjalikku informatsiooni?
1:39:42 Mida võib pudel teha? (Talking Ben)
1:41:08 Crashing Windows
1:45:20 Kuidas teha minu sarnast Movement Batch mängu?
1:52:01 Erinevad Windowsi veateateekraanid
2:00:08 Kass tahab peeru süüa

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

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

? Lisainfo ?
Faili nimi: lookback1.mp4
Renderdamise aeg: 27 minutit, 2 sekundit
Renderdatud 2020 M1 Macbook Pro sülearvutis
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, macOS Seqouia

? Video koostas: Markus Maal ?
© 2024 Markuse videod
lookback1.mp4 Kommentaar Commentary markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/589.jpg N/A /channel_db_lite/web/json/589.json N/A N/A
583 MarkusTegelane+ 15 minutit klippe videotest, mida ma (lõpuni) ei monteerinud 1 2024-10-19 Videod, mida ma erinevatel põhjustel otsustasin avaldamata jätta.

0:00 Kuidas käbi? [Arvuti nõuanded] - @markusTegelane
0:02 Windows 7 paigaldamine sinisesse HP sülearvutisse [Markuse arvuti meelelahutus] - @markusTegelane
0:43 OneUI 6 paigaldamine rootitud seadmesse - @markusTegelanePlus
1:20 Monitori OSD-ga jamamine - @markusTegelane
4:10 X.orgi suurim puudus - @markusTegelanePlus
4:28 KDE Plasma 6 paigaldamine väljalaskepäeval - @markusTegelanePlus
7:28 Välja lõigatud klipp PonyOS videost - @markusTegelane
7:37 The most broken flash game ever made (Part 2) - @PAKTC
7:59 Otseülekande paigutuse testimine - @markusTegelanePlus
8:33 Monteerimata klipp uue aasta vastuvõtja introst - @markuseasjad
8:42 Monteerimata klipp Windows 8.1 toe lõpu videost - @markusTegelane
8:54 Blue Screen Simulator Plus 2.0 (rääkimisega tutvustus) - @markusTegelane
8:57 Various Windows blue screens (monteerimine) - ?
9:07 Vaatajate operatsioonsüsteemid (monteerimata klipp) - @markusTegelanePlus
9:12 Võidusõit sillaga - @markusTegelanePlus
9:42 Kui kaugele on võimalik sõita mängus TrackMania? - @markusTegelane
11:59 [devUpdate 2] Blue Screen Simulator Plus 3.0 - @markusTegelanePlusPlus
13:05 vana ja mitte eriti hea lähtekoodi ülevaade - @markusTegelanePlusPlus
13:19 White Screen OS (a.k.a. Light Mode/OS) - @markusTegelanePlus
13:30 Colin McRae Rally 2.0 intro [60 FPS AI Interpolated] - @PAKTC
13:55 Blue Screen Simulator Plus for Android - @markusTegelane
0 1 0 1 https://www.youtube.com/watch?v=UQKCrWUWBtI 0 15 minutit klippe videotest, mida ma (lõpuni) ei monteerinud 15 minutit klippe videotest, mida ma (lõpuni) ei monteerinud Videod, mida ma erinevatel põhjustel otsustasin avaldamata jätta.

0:00 Kuidas käbi? [Arvuti nõuanded] - @markusTegelane
0:02 Windows 7 paigaldamine sinisesse HP sülearvutisse [Markuse arvuti meelelahutus] - @markusTegelane
0:43 OneUI 6 paigaldamine rootitud seadmesse - @markusTegelanePlus
1:20 Monitori OSD-ga jamamine - @markusTegelane
4:10 X.orgi suurim puudus - @markusTegelanePlus
4:28 KDE Plasma 6 paigaldamine väljalaskepäeval - @markusTegelanePlus
7:28 Välja lõigatud klipp PonyOS videost - @markusTegelane
7:37 The most broken flash game ever made (Part 2) - @PAKTC
7:59 Otseülekande paigutuse testimine - @markusTegelanePlus
8:33 Monteerimata klipp uue aasta vastuvõtja introst - @markuseasjad
8:42 Monteerimata klipp Windows 8.1 toe lõpu videost - @markusTegelane
8:54 Blue Screen Simulator Plus 2.0 (rääkimisega tutvustus) - @markusTegelane
8:57 Various Windows blue screens (monteerimine) - ?
9:07 Vaatajate operatsioonsüsteemid (monteerimata klipp) - @markusTegelanePlus
9:12 Võidusõit sillaga - @markusTegelanePlus
9:42 Kui kaugele on võimalik sõita mängus TrackMania? - @markusTegelane
11:59 [devUpdate 2] Blue Screen Simulator Plus 3.0 - @markusTegelanePlusPlus
13:05 vana ja mitte eriti hea lähtekoodi ülevaade - @markusTegelanePlusPlus
13:19 White Screen OS (a.k.a. Light Mode/OS) - @markusTegelanePlus
13:30 Colin McRae Rally 2.0 intro [60 FPS AI Interpolated] - @PAKTC
13:55 Blue Screen Simulator Plus for Android - @markusTegelane
Videod, mida ma erinevatel põhjustel otsustasin avaldamata jätta.

0:00 Kuidas käbi? [Arvuti nõuanded] - @markusTegelane
0:02 Windows 7 paigaldamine sinisesse HP sülearvutisse [Markuse arvuti meelelahutus] - @markusTegelane
0:43 OneUI 6 paigaldamine rootitud seadmesse - @markusTegelanePlus
1:20 Monitori OSD-ga jamamine - @markusTegelane
4:10 X.orgi suurim puudus - @markusTegelanePlus
4:28 KDE Plasma 6 paigaldamine väljalaskepäeval - @markusTegelanePlus
7:28 Välja lõigatud klipp PonyOS videost - @markusTegelane
7:37 The most broken flash game ever made (Part 2) - @PAKTC
7:59 Otseülekande paigutuse testimine - @markusTegelanePlus
8:33 Monteerimata klipp uue aasta vastuvõtja introst - @markuseasjad
8:42 Monteerimata klipp Windows 8.1 toe lõpu videost - @markusTegelane
8:54 Blue Screen Simulator Plus 2.0 (rääkimisega tutvustus) - @markusTegelane
8:57 Various Windows blue screens (monteerimine) - ?
9:07 Vaatajate operatsioonsüsteemid (monteerimata klipp) - @markusTegelanePlus
9:12 Võidusõit sillaga - @markusTegelanePlus
9:42 Kui kaugele on võimalik sõita mängus TrackMania? - @markusTegelane
11:59 [devUpdate 2] Blue Screen Simulator Plus 3.0 - @markusTegelanePlusPlus
13:05 vana ja mitte eriti hea lähtekoodi ülevaade - @markusTegelanePlusPlus
13:19 White Screen OS (a.k.a. Light Mode/OS) - @markusTegelanePlus
13:30 Colin McRae Rally 2.0 intro [60 FPS AI Interpolated] - @PAKTC
13:55 Blue Screen Simulator Plus for Android - @markusTegelane
unreleased_r2.mp4 Varia Miscellaneous N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/583.jpg N/A /channel_db_lite/web/json/583.json N/A N/A
574 MarkusTegelane Blue Screen Simulator Plus 3.0 uuendus 0 2024-07-23 Blue Screen Simulator Plus 3.0 megauuendus on siin! See video tutvustab mõningaid uusi funktsioone.


► *Video eestikeelne versioon*
https://youtu.be/byBzvLlPShI

Järgmine video: Windows 7 tagasivaade

► *Üleminek uuemale versioonile*
Et uuendada varasemast versioonist (mis talletab eelistused), palun määrake üks järgmistest värskenduse serveritest:
a) https://markustegelane.eu/app
b) http://nossl.markustegelane.eu/app (kasutage seda, kui teine ei toimi)

Et uuendada 1.x versioonidelt, peate lisama järgmise rea "%SystemRoot%\System32\Drivers\etc\hosts" faili
_45.84.205.33 markustegelane.tk_

Seejärel lihtsalt käivitage vana versioon ja peaks ilmuma teavitus uuest versioonist.

► *Allalaadimise link*
GitHub väljalasked: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases

► *Teised lingid*
MarkusTegelane ajaveeb: https://markustegelane.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)
Veebisait: https://markustegelane.eu
Juhuslik video: https://markustegelane.eu/markustegelane/random/?c=mt

► *Muusika*
Blue Fox Music - Blue Groove Deluxe
Neolein - Karst Mountains

► *Lisainfo*
Failinimi: ModestIndigo_EN.mp4
Renderdamise aeg: 26 minutit, 6 sekundit
Stiil: SäraV2
Tarkvara: DaVinci Resolve 18.6, Paint.NET, Visual Studio 2022 Community
Lindistamise kuupäev: 22. juuli 2024

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Teine kanal: youtube.com/@markusTegelanePlus
Programmeerimiskanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC
Markus Maal: youtube.com/@MarkusMaal

► *Aitäh, et vaatasite!*
© 2024 Markuse videod

► *Teemaviited*
#3.0 #bluescreen #bsod
0 1 0 1 https://www.youtube.com/watch?v=zbKro2Odpfw 0 Blue Screen Simulator Plus 3.0 Update Blue Screen Simulator Plus 3.0 uuendus The megaupdate for Blue Screen Simulator Plus 3.0 is here! This video showcases some of the new features.


► *Video eestikeelne versioon*
https://youtu.be/byBzvLlPShI

Next video: Windows 7 revisited

► *Upgrading*
To upgrade from an existing version (which will maintain your preferences), please change the update server to one of the following:
a) https://markustegelane.eu/app
b) http://nossl.markustegelane.eu/app (use this one if the other one doesn't work)

To upgrade from 1.x versions, you need to add this line to the "%SystemRoot%\System32\Drivers\etc\hosts"
_45.84.205.33 markustegelane.tk_

Then just launch it and you should be prompted to update.

► *Download link(s)*
GitHub releases: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases

► *Other links*
MarkusTegelane blog: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)
Website: https://markustegelane.eu
Random video: https://markustegelane.eu/markustegelane/random/?c=mt

► *Music*
Blue Fox Music - Blue Groove Deluxe
Neolein - Karst Mountains

► *Additional information*
Filename: ModestIndigo_EN.mp4
Render time: 26 minutes, 6 seconds
Style: SäraV2
Software used: DaVinci Resolve 18.6, Paint.NET, Visual Studio 2022 Community
Recording date: 22nd July 2024

► *Channels*
Main channel: youtube.com/@markusTegelane
Secondary channel: youtube.com/@markusTegelanePlus
Programming channel: youtube.com/@hashMarkusTegelane
Markus' stuff: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC
Markus Maal: youtube.com/@MarkusMaal

► *Thank you for watching!*
© 2024 Markus' videos

► *Hashtags*
#3.0 #bluescreen #bsod
Blue Screen Simulator Plus 3.0 megauuendus on siin! See video tutvustab mõningaid uusi funktsioone.


► *Video eestikeelne versioon*
https://youtu.be/byBzvLlPShI

Järgmine video: Windows 7 tagasivaade

► *Üleminek uuemale versioonile*
Et uuendada varasemast versioonist (mis talletab eelistused), palun määrake üks järgmistest värskenduse serveritest:
a) https://markustegelane.eu/app
b) http://nossl.markustegelane.eu/app (kasutage seda, kui teine ei toimi)

Et uuendada 1.x versioonidelt, peate lisama järgmise rea "%SystemRoot%\System32\Drivers\etc\hosts" faili
_45.84.205.33 markustegelane.tk_

Seejärel lihtsalt käivitage vana versioon ja peaks ilmuma teavitus uuest versioonist.

► *Allalaadimise link*
GitHub väljalasked: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases

► *Teised lingid*
MarkusTegelane ajaveeb: https://markustegelane.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)
Veebisait: https://markustegelane.eu
Juhuslik video: https://markustegelane.eu/markustegelane/random/?c=mt

► *Muusika*
Blue Fox Music - Blue Groove Deluxe
Neolein - Karst Mountains

► *Lisainfo*
Failinimi: ModestIndigo_EN.mp4
Renderdamise aeg: 26 minutit, 6 sekundit
Stiil: SäraV2
Tarkvara: DaVinci Resolve 18.6, Paint.NET, Visual Studio 2022 Community
Lindistamise kuupäev: 22. juuli 2024

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Teine kanal: youtube.com/@markusTegelanePlus
Programmeerimiskanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC
Markus Maal: youtube.com/@MarkusMaal

► *Aitäh, et vaatasite!*
© 2024 Markuse videod

► *Teemaviited*
#3.0 #bluescreen #bsod
ModestIndigo_EN.mp4 Tarkvara Software markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,Blue Screen Simulator,BSSP,Blue Screen Simulator Plus,crowdstrike,bugcheck,Windows,simulator,harmless,prank,computer prank,Blue Screen of Death,Windows 3.11,Windows 95,Microsoft Windows,Windows XP,Windows Vista,Windows 7,Windows 8,Windows 10,Windows 8.1,Windows NT,Windows 2000,BlueScreen,Microsoft,Operating System,BSOD,Windows 8 Beta,Windows NT 3.1 https://odysee.com/@MarkusTegelane:8/ModestIndigo:7 MarkusTegelane . 0 /channel_db_lite/web/thumbs/574.jpg N/A /channel_db_lite/web/json/574.json N/A N/A
568 MarkusTegelane++ Light OS with draggable windows is really broken [Fun Experiments 0x00] 0 2024-03-15 For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
0 1 0 1 https://www.youtube.com/watch?v=RwAvwf8xYeA 0 Light OS with draggable windows is really broken [Fun Experiments 0x00] Light OS with draggable windows is really broken [Fun Experiments 0x00] For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
2024-03-15 21-10-42.mkv PowerPoint PowerPoint PPTOS,Light OS,PowerPoint OS,movable windows,draggable,droppable,VBA,Visual Basic for Applications,Microsoft PowerPoint,ppsm,Light OS Technologies,macro,scripting N/A MarkusTegelane++ MarkusTegelane++ 0 /channel_db_lite/web/thumbs/568.jpg N/A /channel_db_lite/web/json/568.json N/A N/A
543 Press any key to continue... Obtaining the Buzz lure in Fishing Fantasy: Buzzrod [Save file modification tutorial] 0 2023-07-01 In this video, I'm going to walk you through the process of fixing a bug in this game, which normally makes it impossible to finish the game. And the best part - you can do it with your own save!

Prerequesties:
Python 3: https://www.python.org/downloads/ (in Windows, make sure that "Add to PATH" is checked during installation)
BuzzrodSaveEditor: https://github.com/MarkusMaal/BuzzrodSaveEditor/archive/refs/heads/main.zip (extract to a folder)
A USB flash drive (if the PS2 freezes/errors out while opening/copying to the mass:/ folder, try a different flash drive, USB 2.0 drives are preferred if possible)

w/uLaunchElf entrypoints:
- If you have a completely unmodified PS2 slim console, you can use FreeDVDboot. Full instructions and ISO files here: https://github.com/CTurt/FreeDVDBoot
- If you have a FreeMcBoot memory card or FreeHDboot hard drive, you can navigate to uLaunchElf in the main menu
- If you have a Fortuna exploited memory card, just navigate to browser, go to exploited memory card, back out twice and you should be in uLaunchElf
- If you have a modchipped PS2 or have MechaPwn with force unlock (disable it after modifying the save to be able to load this game), you can burn this copy of wLaunchElf to a CD or DVD: https://gbatemp.net/download/wlaunchelf-v4-43x_isr-iso-elf.37723/version/39334/download?file=337077

Commands:
To list all saves: python save_editor.py -f [filename] -saves
To list items in a save: python save_editor.py -f [filename] -save[num] -li
To patch a game save: python save_editor.py -f [filename] -p [byte address] -iv 3 -o [patched save filename]

Chapters:
0:00 Describing the bug
0:58 Getting the save out of a memory card
2:38 Patching the save file
4:31 Copying the patched save file back to a memory card
5:30 Testing the modified save
0 1 0 1 https://www.youtube.com/watch?v=fSE4aCLbXPQ 0 Obtaining the Buzz lure in Fishing Fantasy: Buzzrod [Save file modification tutorial] . In this video, I'm going to walk you through the process of fixing a bug in this game, which normally makes it impossible to finish the game. And the best part - you can do it with your own save!

Prerequesties:
Python 3: https://www.python.org/downloads/ (in Windows, make sure that "Add to PATH" is checked during installation)
BuzzrodSaveEditor: https://github.com/MarkusMaal/BuzzrodSaveEditor/archive/refs/heads/main.zip (extract to a folder)
A USB flash drive (if the PS2 freezes/errors out while opening/copying to the mass:/ folder, try a different flash drive, USB 2.0 drives are preferred if possible)

w/uLaunchElf entrypoints:
- If you have a completely unmodified PS2 slim console, you can use FreeDVDboot. Full instructions and ISO files here: https://github.com/CTurt/FreeDVDBoot
- If you have a FreeMcBoot memory card or FreeHDboot hard drive, you can navigate to uLaunchElf in the main menu
- If you have a Fortuna exploited memory card, just navigate to browser, go to exploited memory card, back out twice and you should be in uLaunchElf
- If you have a modchipped PS2 or have MechaPwn with force unlock (disable it after modifying the save to be able to load this game), you can burn this copy of wLaunchElf to a CD or DVD: https://gbatemp.net/download/wlaunchelf-v4-43x_isr-iso-elf.37723/version/39334/download?file=337077

Commands:
To list all saves: python save_editor.py -f [filename] -saves
To list items in a save: python save_editor.py -f [filename] -save[num] -li
To patch a game save: python save_editor.py -f [filename] -p [byte address] -iv 3 -o [patched save filename]

Chapters:
0:00 Describing the bug
0:58 Getting the save out of a memory card
2:38 Patching the save file
4:31 Copying the patched save file back to a memory card
5:30 Testing the modified save
. BuzzrodFixFinal.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/543.jpg N/A /channel_db_lite/web/json/543.json N/A N/A
530 MarkusTegelane+ Heliga 60fps kaameralindistuse test 1 2023-03-13 Video, mis jookseb 60 kaadrit sekundis ning sisaldab heli. 0 1 0 1 https://www.youtube.com/watch?v=QE7uG4MMW-Q 0 Heliga 60fps kaameralindistuse test . Video, mis jookseb 60 kaadrit sekundis ning sisaldab heli. . 60fpsCameraTest.mp4 Varia Miscellaneous N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/530.jpg N/A /channel_db_lite/web/json/530.json N/A N/A
496 MarkusTegelane+ Markuse arvuti... meelelahutus? 1 2022-10-22 Klipp veel avaldamata markustegelane videost Momonga Linux-i kohta. // A clip of a mmaal video about Momonga Linux. 0 1 0 1 https://www.youtube.com/watch?v=71L1J8SxtSM 0 Markus computer... entertainment? . A clip of an unreleased mmaal video about Momonga Linux. . momonga_test.mp4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/496.jpg N/A /channel_db_lite/web/json/496.json N/A N/A
479 MarkusTegelane+ Väga veider probleem sülearvutiga 1 2022-08-10 HP Stream sülearvuti, mida ma enda videotest kasutan, kannatab üsna veidra probleemi all. Kui ma panen sülearvuti käima üle 85° nurga all, siis ekraanil pole pilti enne, kui videodraiver initsialiseeritakse. Kuid lahendus on väga lihtne - käivitada sülearvuti 85° või tervama nurga all. 1 1 0 1 https://www.youtube.com/watch?v=nTdG1LQsGtM 0 A very weird laptop problem . HP Stream laptop, which is what I use on videos for my main channel, is suffering from a very weird problem. If I turn on the laptop at an 85° angle, there won't be a picture until the video driver is initialized. But the solution is really simple - to just start the laptop at an 85° or a shaper angle. . hpprobleem.mp4 Lisavideod Additional content HP Stream Notebook,sülearvuti,laptop,Markuse arvuti meelelahutus,Markus computer entertainment,markustegelane N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/479.jpg N/A /channel_db_lite/web/json/479.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
475 MarkusTegelane Windows 10 Ameliorated Edition [Markuse arvuti meelelahutus] 0 2022-07-31 See video demonstreerib erilist modifitseeritud Windows 10 versiooni, mis on palju kergekaalulisem ja eemaldab suure osa jälgimisteenustest ja telemeetriast. 1 1 0 1 https://www.youtube.com/watch?v=Te14YFJ5qUw 0 Windows 10 Ameliorated Edition [Markus Computer Entertainment] . This video talks about a special modified version of Windows 10, which makes it much more lightweight and removes most of the tracking and telemetry.

► Links
Create your own Windows 10 AME .iso: https://wiki.ameliorated.info/documentation_21H1
Website: https://markustegelane.ml/
Blog: https://markustegelane-en.blogspsot.com/
Other channels: https://www.youtube.com/c/MarkusMaal/channels

► Software
Windows 10 (21H1)
Aegisub and YTSubConverter (for creating subtitles)
kdenlive (for editing some earlier parts of the video)
DaVinci Resolve 18 (for editing the video)
paint.NET (for creating the thumbnail)

► Music
Professor Kliq - Surfs Up
Elwood Productions - Low Horizon
Swing (PS1) OST - Track 3
Windows Medley (channel: https://www.youtube.com/user/crocz)
RAIGON inc. - Blazing Heat

► Other info
Original filename: Windows 10 AME.mp4
Style: LaservalgusV3
Render time: 7 minutes, 18 seconds
Recording date: 17th May 2022

► Thank you for watching!
© 2022 Markus' videoss
See video demonstreerib erilist modifitseeritud Windows 10 versiooni, mis on palju kergekaalulisem ja eemaldab suure osa jälgimisteenustest ja telemeetriast.

► Lingid
Looge enda Windows 10 AME .iso: https://wiki.ameliorated.info/documentation_21H1
Veebileht: https://markustegelane.ml/
Ajaveeb: https://markustegelane.blogspsot.com/
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels

► Tarkvara
Windows 10 (21H1)
Aegisub ja YTSubConverter (subtiitrite loomiseks)
kdenlive (osaliselt selle programmiga monteeritud esimene veerand videost)
DaVinci Resolve 18 (video monteerimiseks)
paint.NET (pisipildi koostamiseks)

► Muusika
Professor Kliq - Surfs Up
Elwood Productions - Low Horizon
Swing (PS1) OST - Track 3
Windows Medley (kanalilt: https://www.youtube.com/user/crocz)
RAIGON inc. - Blazing Heat

► Lisainfo
Originaalne failinimi: Windows 10 AME.mp4
Stiil: LaservalgusV3
Renderdamise aeg: 7 minutit, 18 sekundit
Lindistamise kuupäev: 17. mai 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod
Windows 10 AME.mp4 Markuse arvuti meelelahutus Markus computer entertainment Windows 10,Ameliorated,leevendatud,sinine HP sülearvuti,HP Stream laptop,blue laptop,sinine sülearvuti,Mozilla Thunderbird,Firefox,parandatud,Microsoft Windows,Windows 11 alternative,alternatiiv Windows 11 asemel,Windows for people who hate Windows,Windows inimestele kes vihkavad Windowsit,dislike,dino https://odysee.com/@MarkusTegelane:8/windows-10-ameliorated-edition-markus:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/475.jpg N/A /channel_db_lite/web/json/475.json N/A /channel_db_lite/web/stream/475.en.ass
454 MarkusTegelane Veidrad PlayStation 1 BIOS-i rikutused (feat. CD Pleier) 0 2022-06-13 See video on idee poolest väga sarnane sellele, mida ma tegin PlayStation 2 BIOS-i rikutuste videos, aga seekord teen seda originaalse PlayStation konsooliga (täpsemalt emulaatoriga). Erinevalt teistest rikutuste videotest, mille leiate YouTube-st, näitan ma siin ka mälukaardihalduri ja CD pleieri rikutusi.

Ma kasutasin BIOS-i failide rikkumiseks Vinesauce ROM Corruptor, ePSXe ja XEBRA PS1 riistvara imiteerimiseks (Ma kasutan mõnedes kohtades XEBRA emulaatorit, sest see võimaldas mul sisestada mängu plaadi, siis kui olin CD pleieri menüüs) ning mõningeid kohandatud skripte, et rikutusi testida.
1 1 0 1 https://www.youtube.com/watch?v=4n0S_0iojxg 0 Weird PlayStation 1 BIOS Corruptions (feat. CD Player) . *** Warning ***
Intense strobe lights from 9:46 to 10:04

This video is very similar in concept to what I did with the PlayStation 2 BIOS corruption video, but this time it's for the original PlayStation console. Unlike other corruptions you can find on YouTube, I also showcase memory card manager and CD player corruptions.

I used Vinesauce ROM Corruptor to corrupt the BIOS files, ePSXe and XEBRA for emulating the PS1 (XEBRA allowed me to insert the game disc, while in CD player, which is why I used it sometimes), and a handful of custom scripts to test these corruptions.

Links:
Website (recently updated): https://markustegelane.ml
Blog: https://markustegelane-en.blogspot.com
Random video: https://markustegelane.ml/markustegelane/random?c=mt
My other channels: https://www.youtube.com/c/MarkusMaal/channels
Weird PS2 BIOS Corruptions video: https://www.youtube.com/watch?v=5ZLEjfJtqd0
Channel page: https://www.youtube.com/c/MarkusTegelane

© 2022 Markus' videos
Thank you for watching!
*** Hoiatus ***
Intensiivne strobovalgus ajavahemikus 9:46 kuni 10:04

See video on idee poolest väga sarnane sellele, mida ma tegin PlayStation 2 BIOS-i rikutuste videos, aga seekord teen seda originaalse PlayStation konsooliga (täpsemalt emulaatoriga). Erinevalt teistest rikutuste videotest, mille leiate YouTube-st, näitan ma siin ka mälukaardihalduri ja CD pleieri rikutusi.

Ma kasutasin BIOS-i failide rikkumiseks Vinesauce ROM Corruptor, ePSXe ja XEBRA PS1 riistvara imiteerimiseks (Ma kasutan mõnedes kohtades XEBRA emulaatorit, sest see võimaldas mul sisestada mängu plaadi, siis kui olin CD pleieri menüüs) ning mõningeid kohandatud skripte, et rikutusi testida.

Lingid:
Veebileht (hiljuti uuendatud): https://markustegelane.ml
Ajaveeb: https://markustegelane.blogspot.com
Juhuslik video: https://markustegelane.ml/markustegelane/random?c=mt
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels
Veidrate PS2 BIOS-i rikutuste video: https://www.youtube.com/watch?v=5ZLEjfJtqd0
Kanali avaleht: https://www.youtube.com/c/MarkusTegelane

© 2022 Markuse videod
Aitäh, et vaatasite!
ps1corruptions.mp4 Rikutused Corruptions PlayStation,BIOS,corruption,Vinesauce ROM Corruptor,ePSXe,emulation,emulator,XEBRA,Sony,Sony Computer Entertainment,Sony Interactive Entertainment,Personified Fear,Fearful Harmony,visualizations,CD Player,memory card,browser,MarkuStation,markustegelane,Markus Maal https://odysee.com/@MarkusTegelane:8/weird-playstation-1-bios-corruptions:8 MarkusTegelane . 1 /channel_db_lite/web/thumbs/454.jpg N/A /channel_db_lite/web/json/454.json /channel_db_lite/web/stream/454.et.ass N/A
451 MarkusTegelane Mis toimub minu kanali(te)ga? (Mai 2022) [Info ja uudised] 0 2022-05-20 Selles videos räägin ma erinevatest asjadest, mis on seotud selle ja muude kanalitega, mida ma haldan. Videole on saadaval eesti ja inglisekeelsed subtiitrid.

Teemad:
0:00 Intro
0:07 Registrivälised videod
0:55 Draw Batch
1:26 Uus kanal
2:12 Markuse arvuti meelelahutus
2:57 Markuse asjad kohta (kanal)
4:00 Gameplay videod?
5:34 Nõuanded arvutitele?

Lingid:
Veebisait: https://markustegelane.ml
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt
Programmeerimisele keskenduv kanal: https://www.youtube.com/channel/UCvpWEcJTj4DRGIa3o279-3Q
Kanal Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Ajaveeb: https://markustegelane.blogspot.com
MarkuStation videod (sisaldab gameplay videoid): https://www.youtube.com/playlist?list=PL6WkVx7vhloghO_vq9Mlyrk-yFjAXWDfr

Lisainformatsioon:
Muusika: Riot - Newsroom
Failinimi: infomay2022_final.mp4
Monteerimistarkvara: kdenlive (video), Audacity (heli)
Renderdamise aeg: 11 minutes, 59 seconds
1 1 0 1 https://www.youtube.com/watch?v=1tl38nYUz2Y 0 What is going on with my channel(s)? (May 2022) [Info and news] . 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:07 Unlisted videos
0:55 Draw Batch
1:26 New channel
2:12 Markus computer entertainment
2:57 About Markus' stuff (channel)
4:00 Gameplay videos?
5:34 Tips for computers?

Links:
Website: https://markustegelane.ml
Random video: https://markustegelane.ml/markustegelane/random/?c=mt
Programming focused channel: https://www.youtube.com/channel/UCvpWEcJTj4DRGIa3o279-3Q
Markus' stuff channel: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Blog: https://markustegelane-en.blogspot.com
MarkuStation videos (includes gameplay videos): https://www.youtube.com/playlist?list=PL6WkVx7vhloghO_vq9Mlyrk-yFjAXWDfr

Other information:
Music: Riot - Newsroom
Raw filename: infomay2022_final.mp4
Editing software: kdenlive (video), Audacity (audio)
Render time: 11 minutes, 59 seconds
Selles videos räägin ma erinevatest asjadest, mis on seotud selle ja muude kanalitega, mida ma haldan. Videole on saadaval eesti ja inglisekeelsed subtiitrid.

Teemad:
0:00 Intro
0:07 Registrivälised videod
0:55 Draw Batch
1:26 Uus kanal
2:12 Markuse arvuti meelelahutus
2:57 Markuse asjad kohta (kanal)
4:00 Gameplay videod?
5:34 Nõuanded arvutitele?

Lingid:
Veebisait: https://markustegelane.ml
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt
Programmeerimisele keskenduv kanal: https://www.youtube.com/channel/UCvpWEcJTj4DRGIa3o279-3Q
Kanal Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Ajaveeb: https://markustegelane.blogspot.com
MarkuStation videod (sisaldab gameplay videoid): https://www.youtube.com/playlist?list=PL6WkVx7vhloghO_vq9Mlyrk-yFjAXWDfr

Lisainformatsioon:
Muusika: Riot - Newsroom
Failinimi: infomay2022_final.mp4
Monteerimistarkvara: kdenlive (video), Audacity (heli)
Renderdamise aeg: 11 minutes, 59 seconds
infomay2022_final.mp4 Info ja uudised Info and news maasikas,markustegelane,arvuti nõuanded,MarkuStation,reptiil,reptile,what's new,mis on uut,Markus Maal,draw batch,batch file,#markusTegelane,soul eye,rectangular core,white noise,unlisted videos,registrivälised videod,Markuse arvuti meelelahutus,Markus computer entertainment,Momonga Linux,Windows 10 AME,Ameliorated Edition,Markuse asjad,Markus' stuff,#mmaal (#markusTegelane),Markus Maal mängib https://odysee.com/@MarkusTegelane:8/what-is-going-on-with-my-channel(s)-(may:c MarkusTegelane . 1 /channel_db_lite/web/thumbs/451.jpg N/A /channel_db_lite/web/json/451.json /channel_db_lite/web/stream/451.et.ass /channel_db_lite/web/stream/451.en.ass
444 MarkusTegelane Kuidas näha YouTube videoid, millele oled pannud dislike? [Arvuti nõuanded] 0 2022-05-05 Paljud inimesed on küsinud, kas on üldse võimalik näha loetelu videotest, millel oled vajutanud dislike nuppu, umbes nagu meeldinud videote puhul saate spetsiaalset esitusloendit vaadata. See video demonstreerib ainsat meetodit, mida ma tean ja mille abil saate isegi 2022. aastal näha, millistele videotele olete dislike pannud! 0 1 0 1 https://www.youtube.com/watch?v=ldP6L7IPitE 0 How to see a list of videos, which you've disliked on YouTube? [Computer tips] . Many people have wondered if it's possible to see a list of videos, which you've pressed the dislike button on, kind of like you can with the liked videos playlist. Well, this video shows the only method that I know of that still works to this day!

Website: https://markustegelane.ml
Random video: https://markustegelane.ml/markustegelane/random?c=mt
Blog: https://markustegelane-en.blogspot.com

Music from bensound.com
Paljud inimesed on küsinud, kas on üldse võimalik näha loetelu videotest, millel oled vajutanud dislike nuppu, umbes nagu meeldinud videote puhul saate spetsiaalset esitusloendit vaadata. See video demonstreerib ainsat meetodit, mida ma tean ja mille abil saate isegi 2022. aastal näha, millistele videotele olete dislike pannud!

Veebisait: https://markustegelane.ml
Juhuslik video: https://markustegelane.ml/markustegelane/random?c=mt
Ajaveeb: https://markustegelane.blogspot.com

Muusika veebisaidilt bensound.com
dislike.mp4 Arvuti nõuanded Computer tips dislike,youtube,ratings,Google My Activity https://odysee.com/@MarkusTegelane:8/how-to-see-a-list-of-videos,-which:d MarkusTegelane . 1 /channel_db_lite/web/thumbs/444.jpg N/A /channel_db_lite/web/json/444.json N/A N/A
405 MarkusTegelane+ Ülevaatekaamera test / Top-down camera test 1 2022-01-28 Eksperimenteerisin võimaliku kaameraperspektiiviga enda arvuti meelelahutuse videote jaoks. / I was experimenting with a camera perspective for my computer entertainment videos. 0 1 0 1 https://www.youtube.com/watch?v=xR2dGD8FV00 0 . . . . N/A Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/405.jpg N/A /channel_db_lite/web/json/405.json N/A N/A
385 MarkusTegelane+ TMNF, aga kõik tekstuurid on kohatäited [UHD] 1 2021-07-20 See video näitab tekstuuripakki, mille ma ise tegin mängule TrackMania Nations Forever, mis on rakendatud ühele rajale (A02). Ning jah, see on esimene UHD video, mille olen üldse YouTube postitanud (ma pigem eelistan HD-d tulevaste videote jaoks, see video oli lihtsalt test).



Kui kedagi huvitab, siis võin lisada allalaadimise lingi ja tekstuuripaki paigaldamise juhised siia kirjeldusse... (aga ainult siis, kui kedagi see huvitab)
0 1 0 1 https://www.youtube.com/watch?v=_kYohzqdiIs 0 TMNF, but every texture is a placeholder [UHD] . This video showcases a texture pack I made myself for TrackMania Nations Forever applied to one of the campaign tracks (A02). And yes, this is the first UHD video I've ever uploaded to YouTube (I'll stick to HD for most future videos, this video was just a test).

If anybody is interested, I might add a download link and instructions on how to install this texture pack... (but only if there is demand)
See video näitab tekstuuripakki, mille ma ise tegin mängule TrackMania Nations Forever, mis on rakendatud ühele rajale (A02). Ning jah, see on esimene UHD video, mille olen üldse YouTube postitanud (ma pigem eelistan HD-d tulevaste videote jaoks, see video oli lihtsalt test).

Kui kedagi huvitab, siis võin lisada allalaadimise lingi ja tekstuuripaki paigaldamise juhised siia kirjeldusse... (aga ainult siis, kui kedagi see huvitab)
Video03.avi Lisavideod Additional content N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/385.jpg N/A /channel_db_lite/web/json/385.json N/A N/A
374 cqvmix Moving checkerboard pattern (MABL-2L-1TL-1SP-ZIOWS) 1 2021-04-09 This video tests the video compression on YouTube.



Magenta and black pattern

2 layers

1 translucent layer

1 spinning layer

Zoom in and out while spinning
0 1 0 1 https://www.youtube.com/watch?v=vR0Z1Up8O8U 0 Moving checkerboard pattern (MABL-2L-1TL-1SP-ZIOWS) Moving checkerboard pattern (MABL-2L-1TL-1SP-ZIOWS) This video tests the video compression on YouTube.



Magenta and black pattern

2 layers

1 translucent layer

1 spinning layer

Zoom in and out while spinning
This video tests the video compression on YouTube.



Magenta and black pattern

2 layers

1 translucent layer

1 spinning layer

Zoom in and out while spinning
Moving checkerboard pattern (MABL-2L-1TL-1SP-ZIOWS).mp4 Varia Joke videos N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/374.jpg N/A N/A N/A N/A
375 cqvmix Moving checkerboard patterns with moire effect (3D composition) 1 2021-04-09 This video was made to test the bitrate on YouTube. This one creates a moire effect using two patterns, which can cause even more artifacting. Also, at the end, motion blur was added. 0 1 0 1 https://www.youtube.com/watch?v=VV0eYiI0xH8 0 Moving checkerboard patterns with moire effect (3D composition) Moving checkerboard patterns with moire effect (3D composition) This video was made to test the bitrate on YouTube. This one creates a moire effect using two patterns, which can cause even more artifacting. Also, at the end, motion blur was added. This video was made to test the bitrate on YouTube. This one creates a moire effect using two patterns, which can cause even more artifacting. Also, at the end, motion blur was added. Moving checkerboard patterns with moire effect (3D composition).mp4 Varia Joke videos N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/375.jpg N/A N/A N/A N/A
315 Press any key to continue... comment testing zone 0 2020-08-26 This video contains a comment section designed for posting random/nonsensical comments. You may want to test how a comment gets displayed or how YouTube may handle your reply. 0 1 0 1 https://www.youtube.com/watch?v=3RB_wVmY2ko 0 . . This video contains a comment section designed for posting random/nonsensical comments. You may want to test how a comment gets displayed or how YouTube may handle your reply.

The following upload settings were used:
- Popular comments are displayed first by default.
- This video cannot be embedded (that means you are unable to view it from an external website, which is pointless anyway)
- Subscribers were not notified about this upload. They also will not see this in their subscription feed.
- Language is set to English (United Kingdom)
- Video is set up for viewers 13+ only (for COPPA compliance)
- Video is available for under 18 year old viewers
- Category is set to Science and Technology
- Manual thumbnail is used

ANY comments in line with YouTube terms of service are allowed and even the ones that YouTube AI marks as potentially inappropiate will get through. If comments breach the terms of service, it may be reported/flagged by another user.
. dudepost.wmv Eksperimentaalne Experimental N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/315.jpg N/A /channel_db_lite/web/json/315.json N/A N/A
299 MarkusTegelane+ Video test, aga see on värviline ascii VLCs 1 2020-05-20 Markuse videod productions sisemine video värvilise ASCIIga VLCs Arch Linuxis ja mõned klipid sellest, kuidas ma monteerisin seda videot kdenlive'is. 0 1 0 1 https://www.youtube.com/watch?v=YiF7nlheuw0 0 Video test, but it is color ascii art in VLC . Markus' videos production internal video test in color ASCII art using VLC in Arch Linux and also clips of me trying to edit this video in kdenlive.

Source video: https://www.youtube.com/watch?v=V0DOOSlk7qI
Markuse videod productions sisemine video värvilise ASCIIga VLCs Arch Linuxis ja mõned klipid sellest, kuidas ma monteerisin seda videot kdenlive'is.

Originaalne video: https://www.youtube.com/watch?v=V0DOOSlk7qI
vtest_ascii.mp4 Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/299.jpg N/A /channel_db_lite/web/json/299.json N/A N/A
318 cqvmix YouTube HD video test (720p60) 1 2020-03-01 Video:

Codec: H.264 (x264)

Source container: MP4

Resolution: 1280x720

Scan type: Progressive

Anamorphic: No

Standard Dynamic Range (SDR)

Framerate: 60 FPS (Variable FR)

Avg. bitrate: 7500 kbps (2 pass encoding)

Encoder preset: Medium

Encoder level: 3.2

Web optimized: Yes

Additional arguments for encoder: keyint=30:min-keyint=15:ref=1:bframes=2:b-pyramid=none
0 1 0 1 https://www.youtube.com/watch?v=V0DOOSlk7qI 0 YouTube HD video test (720p60) YouTube HD video test (720p60) Video:

Codec: H.264 (x264)

Source container: MP4

Resolution: 1280x720

Scan type: Progressive

Anamorphic: No

Standard Dynamic Range (SDR)

Framerate: 60 FPS (Variable FR)

Avg. bitrate: 7500 kbps (2 pass encoding)

Encoder preset: Medium

Encoder level: 3.2

Web optimized: Yes

Additional arguments for encoder: keyint=30:min-keyint=15:ref=1:bframes=2:b-pyramid=none
Video:

Codec: H.264 (x264)

Source container: MP4

Resolution: 1280x720

Scan type: Progressive

Anamorphic: No

Standard Dynamic Range (SDR)

Framerate: 60 FPS (Variable FR)

Avg. bitrate: 7500 kbps (2 pass encoding)

Encoder preset: Medium

Encoder level: 3.2

Web optimized: Yes

Additional arguments for encoder: keyint=30:min-keyint=15:ref=1:bframes=2:b-pyramid=none
youtube_hd_video_test.mp4 Varia Joke videos N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/318.jpg N/A N/A N/A N/A
290 cqvmix video test 1 2020-02-23 N/A 0 1 0 0 https://www.youtube.com/watch?v=yhwZKsgie98 0 video test video test N/A N/A video_test.avi Eksperimentaalne Experimental N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/290.jpg N/A N/A N/A N/A
278 MarkusTegelane+ [Test] Lorem ipsum 1 2020-01-08 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies, purus lectus malesuada libero, sit amet commodo magna eros quis urna. 0 1 0 1 https://www.youtube.com/watch?v=9Qfud5_aMxI 0 . . . . lorem_ipsum.wmv Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/278.jpg N/A /channel_db_lite/web/json/278.json N/A N/A
271 MarkusTegelane+ MarkuStation 2 (Täiustatud heli kõrvaklappidele) 1 2019-09-14 a 0 1 0 1 https://www.youtube.com/watch?v=b3w7QFLzp_o 0 MarkuStation 2 (Improved sound for headphones) . Dolby headphone system . dolbyheadphone_test.MP4 Eksperimentaalne Experimental MarkuStation,MS2,Dolby,Dolby Headphone,MarkusTegelane,MarkusTegelane+,mina,kirjutasin,selle,sõnumi N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/271.jpg N/A /channel_db_lite/web/json/271.json N/A N/A
268 MarkusTegelane+ hell_o 1 2019-08-14 Paint 3D test 0 1 0 1 https://www.youtube.com/watch?v=lre-Fw6FdtQ 0 . . . . hell o_2.0.mp4 Eksperimentaalne Experimental Comic Sans,Minecraft,Nether,Windows 10,Paint 3D N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/268.jpg N/A /channel_db_lite/web/json/268.json N/A N/A
251 MarkusTegelane+ Kontekstiväline tegelane (I osa) 1 2019-04-27 See video sisaldab erinevaid klippe mu kanali videotest, mille konteksti pole seletatud. 1 1 0 1 https://www.youtube.com/watch?v=3UxllmIV_wk 0 TheMarkusGuy out of context (Part I) . This video contains different clips from my channel's videos, but their context is not explained in this video. . kontekstivälinetegelane.mp4 Lisavideod Additional content MarkusTegelane,TheMarkusGuy,kontekstiväline,out of context,video N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/251.jpg N/A /channel_db_lite/web/json/251.json N/A N/A
215 MarkusTegelane+ 3D test 1 2017-12-28 Keerlev logo // Spinning logo 0 1 0 1 https://www.youtube.com/watch?v=7ki0RRVk3jE 0 . . . . 3d.MP4 Eksperimentaalne Experimental 3d,sony vegras,vegas,pro,professional,reverse,logo,spin,spinner,keerlev,keerlema,keerlemine,spinning N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/215.jpg N/A /channel_db_lite/web/json/215.json N/A N/A
210 MarkusTegelane+ Rikutud video test 1 2017-11-15 Vaatan kuidas YouTube töötleb rikutud videot :-) 0 1 0 0 https://www.youtube.com/watch?v=7BIAhUo8uig 0 Corrupted video test Rikutud video test Let's see how YouTube handles corrupted video :-) Vaatan kuidas YouTube töötleb rikutud videot :-) tm.mp4 Eksperimentaalne Experimental corruption,rikutud,corrupterd,corrupted,videofail,mp4,wmv,how videos work N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/210.jpg N/A /channel_db_lite/web/json/210.json N/A N/A
204 MarkusTegelane+ Peegelvideo (Sedasi töötavad kaamerad TrackManias) 1 2017-10-11 Testing effects 0 1 0 1 https://www.youtube.com/watch?v=4-vOW77Eelw 0 Mirror video (That's how cameras work in TrackMania) . . Testin effekte mirror.MP4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/204.jpg N/A /channel_db_lite/web/json/204.json N/A N/A
201 MarkusTegelane+ Windowed OS running in a Windows XP computer 1 2017-09-30 Just doing some testing 0 1 0 1 https://www.youtube.com/watch?v=jizAiP6NXwY 0 . . . . N/A Lisavideod Additional content N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/201.jpg N/A /channel_db_lite/web/json/201.json N/A N/A
157 MarkusTegelane Mikrofoni test 0 2017-08-08 Testing kas mikrofon töötab… Loodan, et teile ei meeldi. 0 1 1 1 https://www.youtube.com/watch?v=fOgy0kV1Idc 0 . . . . livestream.str Otseülekandearhiiv Live stream archive https://odysee.com/@MarkusTegelane:8/mikrofoni-test:4 MarkusTegelane . 1 /channel_db_lite/web/thumbs/157.jpg N/A /channel_db_lite/web/json/157.json N/A N/A
183 MarkusTegelane+ Chroma key test 1 2017-06-18 Kirjeldub puudub. 0 1 0 1 https://www.youtube.com/watch?v=dQ9uqrAx3Yc 0 . . . . shia.mxf Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/183.jpg N/A /channel_db_lite/web/json/183.json N/A N/A
153 MarkusTegelane Batch fail: Kalkulaator hiire ja kasutajaliidesega! 0 2017-05-07 Lihtne kalkulaator hiire toega! Te saate selle alla laadida siit: [link] BG:EXE, mida kasutasin: [link] Palun teavitage katkistest linkidest! 1 1 0 1 https://www.youtube.com/watch?v=aKhGvYpy9CQ 0 Batch file: Calculator with mouse and GUI! . Simple calculator with mouse support! You can download it here: https://drive.google.com/file/d/0B_igBtlvxUYpeVo5S0NWZWp2Q0U/view?usp=sharing

BG.EXE, I was using: https://www.dropbox.com/s/uy1216fdxfpy2cr/bg.exe?dl=0

Please report broken links!
Lihtne kalkulaator hiire toega! Te saate selle alla laadida siit: https://drive.google.com/file/d/0B_igBtlvxUYpeVo5S0NWZWp2Q0U/view?usp=sharing

BG.EXE, mida ma kasutasin: https://www.dropbox.com/s/uy1216fdxfpy2cr/bg.exe?dl=0

Palun teavitage katkistest linkidest!
calculator.avi Pakkfailid Batch files batch file game,batch file game tutorial,batch file games,batch game,batch game download,batch game engine,batch game maker,batch game movement,batch game programming,batch game rpg,batch game script,batch game tutorial,batch gamer,batch games,batch games download,batch games pong,batch games rpg,batch programming game,best batch game,best batch game ever,best batch games,cool batch games,making a batch game,my batch game https://odysee.com/@MarkusTegelane:8/batch-file-calculator-with-mouse-and-gui:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/153.jpg N/A /channel_db_lite/web/json/153.json N/A N/A
173 MarkusTegelane+ powerminer läks hulluks 1 2017-04-03 Lihtsalt tegin natuke testimist enda tulevasele batch mängule. 0 1 0 1 https://www.youtube.com/watch?v=TZdEq7qmpjI 0 powerminer went crazy . Just doing some testing for my upcoming batch game. . N/A Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/173.jpg N/A /channel_db_lite/web/json/173.json N/A N/A
99 MarkusTegelane Androidi striimimise test: Nyan Cat: Lost In Space 0 2016-10-11 Selles otseülekandes lõpetame Windowsi täienduse saaga ja teeme ka palju muud. Kutsuge kindlasti kõiki vaatama, sest kõigi arvamus loeb! 0 1 1 1 https://www.youtube.com/watch?v=t3uc5DpFqL4 0 . . . Selles otseülekandes lõpetame Windowsi täienduse saaga ja teeme ka palju muud. Kutsuge kindlasti kõiki vaatama, sest kõigi arvamus loeb!

Mis on kavas:
Lõpetame Windowsi saaga
Kui võimalik, tutvustan enda Minecrafti maailma
Testime MEMZ trojanit enda Windowsi saaga arvutis
Lasen Nyan Cat-i 10 minutit (MEMZ trojanist)
Tutvustan Ultimate Windows 3.11 VM-i
Kuulan teie soovitusi
Lõpetan ülekande muusikaga

Planeeritud pikkus: umbes 2 tundi (kui vaja, siis rohkem)



Windowsi täienduse saaga kirjeldus:

Täna teeme otseülekande sellest, kuidas täiendan Windows 1.01 Windows XP-le läbi kõigi vanemate OS-ide. Plaanis on täiendada järgnevaid OS-e:

MS-DOS 5.0
WIndows 1.01
Windows 286 (Windows 2.11)
Windows 3.0
Windows 3.1
Windows 95
Windows 98 Teine väljalase
WIndows 2000
Windows ME (Millennium Edition)
Windows XP (võib-olla)
Random video // Juhuslik video
https://markustegelane.ml/random.html
livestream.str Otseülekandearhiiv Live stream archive https://odysee.com/@MarkusTegelane:8/androidi-striimimise-test-nyan-cat-lost:9 MarkusTegelane . 1 /channel_db_lite/web/thumbs/99.jpg N/A /channel_db_lite/web/json/99.json N/A N/A
63 MarkusTegelane TrackMania rada - Nuputa ja sõida (TrackMania RPG rada) 0 2015-11-25 See on minu tehtud üks uuematest radadest TrackManias. Allalaadimislink ilmub kirjeldusse, siis kui seda küsitakse. 1 1 0 1 https://www.youtube.com/watch?v=3JUWPfP3qtg 0 TrackMania track - Figure out and drive (TrackMania RPG map) . This is one of the newest maps I've made in TrackMania. The download link will be available if you ask for it. . TrackMania+rada+-+Nuputa+ja+s%u00f5ida+(TrackMania+RPG+rada).mp4 MarkuStation 0 MarkuStation 0 TrackMania,United,Forever https://odysee.com/@MarkusTegelane:8/trackmania-rada-nuputa-ja-s-ida:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/63.jpg N/A /channel_db_lite/web/json/63.json N/A N/A
59 MarkusTegelane Batch OS: Log OS [HD] 0 2015-11-02 This is my most advanced batch file OS and made totally by me.



--Update 2016--[linkide loend]
1 1 0 1 https://www.youtube.com/watch?v=JUvTQ8L9a7k 0 . Batch faili OS: Log OS [HD] This is my most advanced batch file OS and made totally by me. --Update 2016--[link list] See on mu kõige arenenum batch faili OS ja see on loodud täielikult minu poolt. ---Uuendus 2016---[linkide loend] Batch+OS_+Log+OS+(Probably+the+most+advanced+batch+OS)+[HD].mp4 Pakkfailid Batch files Batch file,Batch file OS,LogOS,Operating System (Software Genre),Batch Processing,Software (Industry),Family,Friends,Ever,Best,Fun,Reunion,Grandma,Travel,Visit,Uncle,Worst,Greatest,Adventure,Culture,Worlds,Nature,Events,Cousins https://odysee.com/@MarkusTegelane:8/batch-os-log-os-hd:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/59.jpg N/A /channel_db_lite/web/json/59.json N/A N/A
55 MarkusTegelane Markus Maal mängib III - Minecraft 0 2015-10-11 Selles videos ma mängin Minecrafti ja teen selle puhul eraldi YouTube-i maailma. Samuti on see üks ma kanali kõige pikematest videotest (umbes pool tundi). Vabandust, kes ootasid rääkimisega geimpleid :/





...
1 1 0 1 https://www.youtube.com/watch?v=82kFRGwvBRU 0 Markus Maal plays III - Minecraft . In this video I will play Minecraft and make separate world for YouTube purposes. Also it is right now one of the longest videos in my channel (about 30 minutes). Sorry for those who were waiting for gameplay where I talked :/ ... . yt-editor.flv Markus Maal mängib Markus Maal plays YouTube'i redigeerija,Minecraft (Award-Winning Work),Video Game Culture,Video Game (Industry),Markus Maal,Ühendama,ühendatud,ühendaja,Markus,Maal,Eesti maal https://odysee.com/@MarkusTegelane:8/markus-maal-m-ngib-iii-minecraft:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/55.jpg N/A /channel_db_lite/web/json/55.json N/A N/A
48 MarkusTegelane Kuidas sunniviisiliselt panna Windows 10 näitama sinist ekraani NotMyFault-iga 0 2015-09-08 [linkide loend]



See allalaadimislink on täiesti ohutu, kui sa õiget linki vajutad. Programm ise ei ole tegelikult viirus, kuid on süsteemi vigade testimise programm (BSOD näol)



Selles videos näitan ma kuidas ma krahhin Windows 1...
1 1 0 1 https://www.youtube.com/watch?v=kgCFlvX6KpA 0 How to force Windows 10 to show blue screen using NotMyFault . [link list] This download link is completely safe when you click the correct link. Program itself isn't actually a virus, but it is program to test system bugs (for BSODs) In this video I show how I crashed Windows 10 using NotMyFault . Windows 10 krahhimine NotMyFault-iga.mp4 Arvuti nõuanded Computer tips Microsoft Windows (Operating System),Windows 10,Software (Industry),Windows 10 Mobile,Port Of Mobile https://odysee.com/@MarkusTegelane:8/kuidas-sunniviisiliselt-panna-windows-10:7 MarkusTegelane . 1 /channel_db_lite/web/thumbs/48.jpg N/A /channel_db_lite/web/json/48.json N/A N/A
44 MarkusTegelane Lõpp 2ga - Lõpp 2 Sepaga 1 2015-05-27 Originaalne kirjeldus pole saadaval. Tegu oli paroodiaga saatest Nädalalõpp Kanal 2ga Ott Sepa etteastest. 0 1 0 0 http://www.youtube.com/watch?v=G71vWFEl8ME 0 . . . . N/A Naljavideod Joke videos N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/44.jpg N/A N/A N/A N/A
34 MarkusTegelane TrackMania² Valley rada Sõida Tuulepargis 0 2015-04-16 Tuulegeneraatorid ja saared ja rada. See on otsast lõpuni minu tehtud. Samuti testisin ma selle raja puhul udu.



Video keskmine kiirus : 30 FPS



Raja täielik nimi: Sõida $099$w$i$sTuulepargis





Vaata ka mu Blogi uusimate...
1 1 0 1 https://www.youtube.com/watch?v=ddwXT_8aQ50 0 TrackMania² Valley track "Drve at a wind farm" . Wind turbines and islands and the track. This is made by me from scratch. I also experimented with fog in this track. Average framerate : 30 FPS Track's raw name: Sõida $099$w$i$sTuulepargis Also check out my blog for latest stuff... . TrackMania² Valley rada Sõida tuulepargis!.mp4 MarkuStation 0 MarkuStation 0 TrackMania 2: Canyon (Video Game),Racing Video Game (Video Game Genre),Tuulegeneraatorid,Elekter,Energia,Markus Maal,ühendama,ühendatud,TM,TrackMania (Video Game Series),TrackMania 2,Valley https://odysee.com/@MarkusTegelane:8/trackmania-valley-rada-s-ida-tuulepargis:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/34.jpg N/A /channel_db_lite/web/json/34.json N/A N/A
32 MarkusTegelane TrackMania Kokkupõrked - Corrupted versioon 0 2015-04-13 See on naerugaasi versioon tavalisest TrackMania kokkupõrgetest. Siin on ka mu töödeldud intro. Andke teada ,kui soovite seda tavaintroks.



Vaata uuendusi mu ajaveebist : [link]
1 1 0 1 https://www.youtube.com/watch?v=3XOh2qou50k 0 TrackMania Collisions - Corrupted version . This is the "laughing gas" version of the regular TrackMania collisions video. Here's also my edited intro. Let me know if you'd like me to use it as the regular intro. Channel updates on my blog: [link] . TrackMania Kokkupõrked - Corrupted versioon.mp4 MarkuStation 0 MarkuStation 0 TrackMania (Video Game Series),Racing Video Game (Video Game Genre),Blue Screen of Death,BSOD,Markus Maal,ühendama,ühendatud https://odysee.com/@MarkusTegelane:8/trackmania-kokkup-rked-corrupted:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/32.jpg N/A /channel_db_lite/web/json/32.json N/A N/A
30 MarkusTegelane Minu tehtud parimad TrackMania² rajad 0 2015-04-07 Selles videos näitan ma järgnevate mängude radasid mida ma olen ise teinud: TrackMania² Canyon TrackMania² Valley TrackMania² Stadium Need on minu tehtud rajad. Radade nimed on järgmised: 1. Staadioni hullus 2. Valley test 3. Salajane maja (canyon)... 1 1 0 1 https://www.youtube.com/watch?v=KoR1rDyQduc 0 Best TrackMania² tracks I have made . In this video I am going to show different tracks I've made in the following games: TrackMania² Canyon TrackMania² Valley TrackMania² Stadium These are my tracks. The names of them are the following: 1. Stadium madness 2. Valley Test 3. Secret house (canyon)... . Minu tehtud parimad TrackMania² rajad.mp4 MarkuStation 0 MarkuStation 0 TrackMania 2: Canyon (Video Game),Racing Video Game (Video Game Genre),TrackMania (Video Game Series),TrackMania 2: Valley (Video Game),TrackMania 2: Stadium (Video Game),Mania Planet,ManiaPlanet,mmaal,ühendama,ühendatud,Eesti,30 FPS,Frames Per Second,Video Game (Industry),Movie Maker,Windows,Computer,Forever https://odysee.com/@MarkusTegelane:8/minu-tehtud-parimad-trackmania-rajad:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/30.jpg N/A /channel_db_lite/web/json/30.json N/A N/A