Leiti 85 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
615 Press any key to continue... Save file editor for Flipnic [Feature showcase] 0 2025-04-25 Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
0 1 0 1 https://www.youtube.com/watch?v=Tk6KGdcUYkY 0 Save file editor for Flipnic [Feature showcase] Save file editor for Flipnic [Feature showcase] Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
Timeline 1.mp4 Videomängude analüüs Video game analysis save file editor,video game,PlayStation 2,Sony PlayStation,Flipnic,Flipnic: Ultimate Pinball,Flipnic™,フリップニック,is an enjoyable simple-action amazing pinball game for you,Ultimate Pinball,Ubisoft,Capcom,Sony Computer Entertainment Inc.,emulator,PCSX2 N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/615.jpg N/A N/A N/A N/A
611 Press any key to continue... Windows XP Tour [SWF Audio Rip] 0 2025-04-06 Audio files extracted from the Windows XP Tour files. Most audio is in the swf files you can find in C:\Windows\Tours\Help\mmTour, so you can use a tool like JPEXS Flash Decompiler to extract the audio files, however some stuff is embedded directly to tour.exe. So what I did is I searched for the "FWS" magic within tour.exe with a hex editor and knowing the offset for that allowed me to separate the embedded SWF file, which I could then open with a flash decompiler. There were some people on Reddit saying they could extract it from tour.exe with 7-Zip, but that didn't work for me, so I did it manually.

Chapters:
0:00 intro.swf
1:02 nav.swf
1:05 segment1.swf
3:23 segment2.swf
5:13 segment3.swf
7:51 segment4.swf
11:54 segment5.swf
19:30 tour.exe (tour music)
0 1 0 1 https://www.youtube.com/watch?v=QWWP8B0TKJI 0 Windows XP Tour [SWF Audio Rip] Windows XP Tour [SWF Audio Rip] Audio files extracted from the Windows XP Tour files. Most audio is in the swf files you can find in C:\Windows\Tours\Help\mmTour, so you can use a tool like JPEXS Flash Decompiler to extract the audio files, however some stuff is embedded directly to tour.exe. So what I did is I searched for the "FWS" magic within tour.exe with a hex editor and knowing the offset for that allowed me to separate the embedded SWF file, which I could then open with a flash decompiler. There were some people on Reddit saying they could extract it from tour.exe with 7-Zip, but that didn't work for me, so I did it manually.

Chapters:
0:00 intro.swf
1:02 nav.swf
1:05 segment1.swf
3:23 segment2.swf
5:13 segment3.swf
7:51 segment4.swf
11:54 segment5.swf
19:30 tour.exe (tour music)
Audio files extracted from the Windows XP Tour files. Most audio is in the swf files you can find in C:\Windows\Tours\Help\mmTour, so you can use a tool like JPEXS Flash Decompiler to extract the audio files, however some stuff is embedded directly to tour.exe. So what I did is I searched for the "FWS" magic within tour.exe with a hex editor and knowing the offset for that allowed me to separate the embedded SWF file, which I could then open with a flash decompiler. There were some people on Reddit saying they could extract it from tour.exe with 7-Zip, but that didn't work for me, so I did it manually.

Chapters:
0:00 intro.swf
1:02 nav.swf
1:05 segment1.swf
3:23 segment2.swf
5:13 segment3.swf
7:51 segment4.swf
11:54 segment5.swf
19:30 tour.exe (tour music)
xptour.mp4 Muusika Music Windows XP,Windows XP Tour,mmTour,where is windows xp tour music located,MP3,audio,extraction,background music,BGM,tour music N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/611.jpg N/A N/A N/A N/A
610 Press any key to continue... Minesweeper [PC Longplay] 0 2025-04-01 Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
0 1 0 1 https://www.youtube.com/watch?v=NhrS3xDpgPU 0 Minesweeper [PC Longplay] Minesweeper [PC Longplay] Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
minesweeper.mp4 Muud mängimise videod Other gameplay videos Windows XP,Minesweeper,gameplay,longplay,no commentary,Expert difficulty,how to win at minesweeper,why did i spend 4 hours of my life trying to beat the expert difficulty,Intermediate difficulty,Beginner difficulty,speedrun,100% speedrun,Microsoft,Microsoft Minesweeper,flags,question mark N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/610.jpg N/A N/A N/A N/A
606 MarkusTegelane++ Kuidas panna aknad alati teiste akende taha AvaloniaUI raamistikus? [Töölaua tasandil aknad] 0 2025-03-26 See video näitab, kuidas teha nii, et aknad oleksid alati töölauatasandil ehk teiste akende taga ning ei trügiks klikkimisel ette erinevatel töölauaplatvormidel (Window, Linux, macOS).

Ma olen otsinud seda õpetust, aga peale ühe postituse Redditis ei ole ma väga palju selle kohta infot leidnud, seega otsustasin selle jaoks õpetuse teha!

Ma ei näita kuidas seda koodiga Linuxis teha, sealse modulaarsuse pärast, arvestades, et igal kasutajal võib olla erinev aknahaldur või kuvaserver. Seega piiran ma ennast ja näitan ainult kuidas lisada aknareegel KDE Plasma töölaual KWini aknahalduriga, et sarnane efekt saavutada.

Tänan kasutajat @almenscorner Redditis, kes tõi välja lahenduse macOSi jaoks: https://www.reddit.com/r/AvaloniaUI/comments/1de1jcq/comment/l8f2zcm/

Minu demorakendus: https://github.com/MarkusMaal/StayBehindDemo

Peatükid:
0:00 Windows
9:34 Linux
13:57 macOS

Kasulikud lingid:
Microsoft Visual Studio (IDE): https://visualstudio.microsoft.com/
JetBrains Rider (IDE): https://www.jetbrains.com/rider/
Avalonia UI dokumentatsioon: https://docs.avaloniaui.net/
Firefoxi teema: https://addons.mozilla.org/en-US/firefox/addon/arona/
Taustapilt: https://www.teahub.io/viewwp/iwhJTh_32-9-wallpaper-4k/

Taustamuusika:
Kevin MacLeod - Perpectives
Kevin MacLeod - Gymnopedie No. 1 (helilooja: Erik Satie)
Kevin MacLeod - Adventures in Adventureland
Kevin MacLeod - Phantom from Space
1 1 0 1 https://www.youtube.com/watch?v=0AXyqkxZwE4 0 How to always have a window stay behind other windows in AvaloniaUI? [Desktop level windows] Kuidas panna aknad alati teiste akende taha AvaloniaUI raamistikus? [Töölaua tasandil aknad] This video showcases how to have a window always at the desktop level, i.e. behind other windows and never come to the front when clicking on it for several desktop platforms (Windows, Linux, macOS).

I've been looking for a tutorial on this and other than a post on Reddit, haven't found much about it, so I decided to make a tutorial on this topic!

I'm not showing a way to do it with just code on Linux, because of the crazy modularity Linux has in terms of different window managers and display servers it has. So I'm going to limit myself on this video to just showing how to add a window rule in KDE Plasma with KWin window manager to achieve a similar effect.

Credit to @almenscorner on Reddit for coming up with a solution that works on macOS: https://www.reddit.com/r/AvaloniaUI/comments/1de1jcq/comment/l8f2zcm/

My demo app: https://github.com/MarkusMaal/StayBehindDemo

Chapters:
0:00 Windows
9:34 Linux
13:57 macOS

Useful links:
Microsoft Visual Studio (IDE): https://visualstudio.microsoft.com/
JetBrains Rider (IDE): https://www.jetbrains.com/rider/
Avalonia UI documentation: https://docs.avaloniaui.net/
Firefox theme: https://addons.mozilla.org/en-US/firefox/addon/arona/
Wallpaper: https://www.teahub.io/viewwp/iwhJTh_32-9-wallpaper-4k/

Background music:
Kevin MacLeod - Perpectives
Kevin MacLeod - Gymnopedie No. 1 (helilooja: Erik Satie)
Kevin MacLeod - Adventures in Adventureland
Kevin MacLeod - Phantom from Space
See video näitab, kuidas teha nii, et aknad oleksid alati töölauatasandil ehk teiste akende taga ning ei trügiks klikkimisel ette erinevatel töölauaplatvormidel (Window, Linux, macOS).

Ma olen otsinud seda õpetust, aga peale ühe postituse Redditis ei ole ma väga palju selle kohta infot leidnud, seega otsustasin selle jaoks õpetuse teha!

Ma ei näita kuidas seda koodiga Linuxis teha, sealse modulaarsuse pärast, arvestades, et igal kasutajal võib olla erinev aknahaldur või kuvaserver. Seega piiran ma ennast ja näitan ainult kuidas lisada aknareegel KDE Plasma töölaual KWini aknahalduriga, et sarnane efekt saavutada.

Tänan kasutajat @almenscorner Redditis, kes tõi välja lahenduse macOSi jaoks: https://www.reddit.com/r/AvaloniaUI/comments/1de1jcq/comment/l8f2zcm/

Minu demorakendus: https://github.com/MarkusMaal/StayBehindDemo

Peatükid:
0:00 Windows
9:34 Linux
13:57 macOS

Kasulikud lingid:
Microsoft Visual Studio (IDE): https://visualstudio.microsoft.com/
JetBrains Rider (IDE): https://www.jetbrains.com/rider/
Avalonia UI dokumentatsioon: https://docs.avaloniaui.net/
Firefoxi teema: https://addons.mozilla.org/en-US/firefox/addon/arona/
Taustapilt: https://www.teahub.io/viewwp/iwhJTh_32-9-wallpaper-4k/

Taustamuusika:
Kevin MacLeod - Perpectives
Kevin MacLeod - Gymnopedie No. 1 (helilooja: Erik Satie)
Kevin MacLeod - Adventures in Adventureland
Kevin MacLeod - Phantom from Space
avaavas.mp4 Programmeerimine Programming Avalonia,C#,dotnet,.NET,multi-platform,desktop,desktop level,behind other windows,stay behind,send to back,back of other windows https://odysee.com/@hashMarkusTegelane:3/avaavas:8 MarkusTegelane++ MarkusTegelane++ 0 /channel_db_lite/web/thumbs/606.jpg N/A N/A N/A N/A
603 Press any key to continue... Uninstall Ubuntu Ad Commercial (Unofficial) 0 2025-02-05 *BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
0 1 0 1 https://www.youtube.com/watch?v=XlbG8HxTlG0 0 Uninstall Ubuntu Ad Commercial (Unofficial) Uninstall Ubuntu Ad Commercial (Unofficial) *BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
*BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
potato-2x-RIFE-RIFE3.1-59.94006fps.mkv Naljavideod Joke videos Linux,Ubuntu,14.04 N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/603.jpg N/A N/A N/A N/A
593 Press any key to continue... Constructor - Flicks and sound effects [DOS FLC RIP] 0 2025-01-01 All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
1 1 0 1 https://www.youtube.com/watch?v=KwRIcbXnGkQ 0 Constructor - Flicks and sound effects [DOS FLC RIP] Constructor - Flicks and sound effects [DOS FLC RIP] All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
ConstructorFlicks.mp4 FMV klipid FMV clips N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/593.jpg N/A /channel_db_lite/web/json/593.json 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
588 MarkusTegelane Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint 0 2024-12-15 Kõige modulaarsem ja arendajasõbralikum PowerPoint OS! Pärast mitme kuu pikkust arendust, Light OS Technologies esitleb - Sunlight OS 1.0!

▲ *Lisamärkused* ▲
See PowerPoint OS-i jaoks tuleb makrod sisse lülitada. Kui näete akent esitluse kuvamisel, mis küsib kas soovite makrod või ActiveX sisse lülitada, tehke seda.

See PPTOS ei toimi PowerPointi mobiili või veebiversioonides. Samuti ei toimi see Office for Mac-iga. Kui olete Linuxi või Maci kasutaja, soovitame teha Windowsi virtuaalmasin, kuhu on Microsoft Office paigaldatud.

Office 2016 või hilisem versioon on vajalik täieliku funktsionaalsuse tagamiseks, kuid Office 2010-2013 peaksid ka toimima, kuid esineda võivad mõned ühilduvusprobleemid (Office 2007 peaks teoorias toimima, aga ma pole seda versiooni katsetanud).


■ Lingid ■
Allalaadimise link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Loo enda rakendusi (inglise keeles): https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

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

♫ Muusika♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Lisainfo ?
Failinimi: LetThereBeSunlight.mp4
Renderdamise aeg: 5 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Video koostas: Markus Maal ?
© 2024 Markuse videod
1 1 0 1 https://www.youtube.com/watch?v=KdfOI-mtnuA 0 Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint The most modular and developer friendly PowerPoint OS ever made! After several months of development, Light OS Technologies is ready to present Sunlight OS 1.0!

▲ *Additional notes* ▲
This PowerPoint OS requires macros to be enabled in order to operate. If you see a prompt when launching the presentation asking if you want to enable Macros or ActiveX, you need to enable them.

This PPTOS will NOT work on mobile or web versions of PowerPoint. In addition, it's not compatible with Office for Mac. If you're a Linux or Mac user, we recommend creating a Windows virtual machine with Microsoft Office installed on it.

Office 2016 or later required for full functionality, but it should boot with Office 2010-2013 as well, tough you may experience compatiblity some issues (Office 2007 might work in theory, but I haven't tested it).


■ Links ■
Download link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Create your own apps: https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Website: https://markustegelane.eu
Blog: https://markustegelane-en.blogspot.com

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

♫ Music ♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Additional information ?
Filename: LetThereBeSunlight.mp4
Render time: 5 minutes, 59 seconds
Video card: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Software: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Created by: Markus Maal ?
© 2024 Markuse videod
Kõige modulaarsem ja arendajasõbralikum PowerPoint OS! Pärast mitme kuu pikkust arendust, Light OS Technologies esitleb - Sunlight OS 1.0!

▲ *Lisamärkused* ▲
See PowerPoint OS-i jaoks tuleb makrod sisse lülitada. Kui näete akent esitluse kuvamisel, mis küsib kas soovite makrod või ActiveX sisse lülitada, tehke seda.

See PPTOS ei toimi PowerPointi mobiili või veebiversioonides. Samuti ei toimi see Office for Mac-iga. Kui olete Linuxi või Maci kasutaja, soovitame teha Windowsi virtuaalmasin, kuhu on Microsoft Office paigaldatud.

Office 2016 või hilisem versioon on vajalik täieliku funktsionaalsuse tagamiseks, kuid Office 2010-2013 peaksid ka toimima, kuid esineda võivad mõned ühilduvusprobleemid (Office 2007 peaks teoorias toimima, aga ma pole seda versiooni katsetanud).


■ Lingid ■
Allalaadimise link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Loo enda rakendusi (inglise keeles): https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

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

♫ Muusika♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Lisainfo ?
Failinimi: LetThereBeSunlight.mp4
Renderdamise aeg: 5 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Video koostas: Markus Maal ?
© 2024 Markuse videod
LetThereBeSunlight.mp4 PowerPoint PowerPoint Markus Maal,computers,Sunlight,Light OS Technologies,Light OS,Light OS Modern,Sunlight OS,PPTOS,PowerPoint OS,VBA,macros,jeff,movable windows,resizable windows,in PowerPoint,Made in PowerPoint,OS simulator,multitasking,advanced,custom apps,make custom apps for PowerPoint OS,Software Development Kit,Application Programming Interface,API,SDK,Microsoft PowerPoint,PPSM,PowerPoint VBA,CursorAPI,HSL color picker,PPTGames,common dialogs,file system,ShapeFS N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/588.jpg N/A /channel_db_lite/web/json/588.json /channel_db_lite/web/stream/588.et.ass N/A
587 MarkusTegelane Kas mu allalaadimise lingid on tegelikult viirused? 0 2024-11-29 Videote, mille kirjeldusse olen pannud allalaadimise linke, kommentaarides on paljud inimesed kahtlustanud, et ma levitan arvutiviiruseid nende linkide kaudu, kuna nende viirustõrje tuvastas need failid. Selles videos näitan viise, kuidas kindlaks teha, et see pole tõsi.

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

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

♫ Muusika ♫
Darude - Sandstorm (Windows 7 Remix)
eXorb - Electronic Grilled Cheese

? Lisainformatsioon ?
Failinimi: sussygen.mp4
Renderdamise aeg: 7 minutes, 7seconds
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.1, VLC Player, PaintDotNET, Windows 11, macOS Sequoia
1 1 0 1 https://www.youtube.com/watch?v=d8fmjlQwNx0 0 Are my download links actually viruses? Kas mu allalaadimise lingid on tegelikult viirused? On videos, where I have provided download links, many people have suspected that I am spreading computer viruses through my download links due to false detections by their antivirus software. In this video, I'll show some ways to determine that this isn't the case.

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

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

♫ Music ♫
Darude - Sandstorm (Windows 7 Remix)
eXorb - Electronic Grilled Cheese

? Additional information ?
Filename: sussygen.mp4
Render time: 7 minutes, 7seconds
Video card: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Software: DaVinci Resolve 19.1, VLC Player, PaintDotNET, Windows 11, macOS Sequoia

? Created by: Markus Maal ?
© 2024 Markuse videod
Videote, mille kirjeldusse olen pannud allalaadimise linke, kommentaarides on paljud inimesed kahtlustanud, et ma levitan arvutiviiruseid nende linkide kaudu, kuna nende viirustõrje tuvastas need failid. Selles videos näitan viise, kuidas kindlaks teha, et see pole tõsi.

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

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

♫ Muusika ♫
Darude - Sandstorm (Windows 7 Remix)
eXorb - Electronic Grilled Cheese

? Lisainformatsioon ?
Failinimi: sussygen.mp4
Renderdamise aeg: 7 minutes, 7seconds
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.1, VLC Player, PaintDotNET, Windows 11, macOS Sequoia
sussygen.mp4 Arvuti nõuanded Computer tips markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,virus,malware,trojan,susgen,sussy baka,amogus,among us,impostor,300983 N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/587.jpg /channel_db_lite/web/stream/587.mp4 /channel_db_lite/web/json/587.json N/A N/A
573 MarkusTegelane++ [devUpdate 1] Blue Screen Simulator Plus 3.0 - New UI, Windows 8 Beta BSOD, Trace log 0 2024-06-19 The first devUpdate video for Blue Screen Simulator Plus 3.0. The devUpdate series showcases new features in development for the next version of the software.

Beta binary: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases/tag/v3.0-pre-240619a
Beta source code: https://github.com/MarkusMaal/BlueScreenSimulatorPlus
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/markustegelane
0 1 0 1 https://www.youtube.com/watch?v=ZR4oof0LP8M 0 [devUpdate 1] Blue Screen Simulator Plus 3.0 - New UI, Windows 8 Beta BSOD, Trace log [devUpdate 1] Blue Screen Simulator Plus 3.0 - New UI, Windows 8 Beta BSOD, Trace log The first devUpdate video for Blue Screen Simulator Plus 3.0. The devUpdate series showcases new features in development for the next version of the software.

Beta binary: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases/tag/v3.0-pre-240619a
Beta source code: https://github.com/MarkusMaal/BlueScreenSimulatorPlus
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/markustegelane
The first devUpdate video for Blue Screen Simulator Plus 3.0. The devUpdate series showcases new features in development for the next version of the software.

Beta binary: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/releases/tag/v3.0-pre-240619a
Beta source code: https://github.com/MarkusMaal/BlueScreenSimulatorPlus
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/markustegelane
bssp_3_du1.mp4 devUpdate devUpdate https://odysee.com/@hashMarkusTegelane:3/bssp_3_du1:f MarkusTegelane++ MarkusTegelane++ 0 /channel_db_lite/web/thumbs/573.jpg /channel_db_lite/web/stream/573.mp4 /channel_db_lite/web/json/573.json N/A N/A
571 MarkusTegelane [Re-upload] Markuse arvuti meelelahutus - Android Oreo ülevaade ja Firefoxi röst (I osa) 0 2024-05-10 Muutsin selles videos mõned asjad ära ja laadisin uuesti üles autoriõigusega seotud probleemide tõttu.

Algversiooni üleslaadimise kuupäev: 20. november 2017
Kanali andmebaasi kirje: https://markusmaal.ee/channel_db_lite/web/video/161

-----------------------------------
Algne kirjeldus:
-----------------------------------

Google lasi välja uue Android versiooni nimega Oreo. Kas see on parem kui eelmine versioon? Vaadake videot, et teada saada!

#MarkuseArvutiMeelelahutus #Android

Ole kursis

Ajaveeb: http://www.markustegelane.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Teised kanalid

MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...

Lisainfo

Video RAW nimi: mamo.mp4
Kasutatud tarkvara: Sony Vegas Pro 11, Süsteem Android Oreo 8.0, ROM Nitrogen OS
Renderdamise aeg: NA, jätsin ööseks tegema Suvaline video: http://markustegelane.tk/random.html
1 1 0 1 https://www.youtube.com/watch?v=0iWui9CJE1E 0 [Re-upload] Android Oreo overview and Firefox roast (Part I) [Markus computer entertainment] [Re-upload] Markuse arvuti meelelahutus - Android Oreo ülevaade ja Firefoxi röst (I osa) I modified some stuff in this video and re-uploaded it due to copyright related issues.

Upload date of the original version: 20. november 2017
Channel database entry: https://markusmaal.ee/channel_db_lite/web/video/161

-----------------------------------
Original description:
-----------------------------------

Google released a new Android version named Oreo. Is it better than the last version? Keep watching to find out!

Stay updated

Blog: http://www.themarkusguy.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Other channels

TheMarkusGuy+ : https://www.youtube.com/channel/UCGGM...
TheMarkusGuy++ : https://www.youtube.com/channel/UC_ah...
Markus's stuff: https://www.youtube.com/channel/UCMD2...

Lisainfo
RAW filename: mamo.mp4
Software used: Sony Vegas Pro 11, System Android Oreo 8.0, ROM Nitrogen OS
Rendering time NA, left it rendering over night
Muutsin selles videos mõned asjad ära ja laadisin uuesti üles autoriõigusega seotud probleemide tõttu.

Algversiooni üleslaadimise kuupäev: 20. november 2017
Kanali andmebaasi kirje: https://markusmaal.ee/channel_db_lite/web/video/161

-----------------------------------
Algne kirjeldus:
-----------------------------------

Google lasi välja uue Android versiooni nimega Oreo. Kas see on parem kui eelmine versioon? Vaadake videot, et teada saada!

#MarkuseArvutiMeelelahutus #Android

Ole kursis

Ajaveeb: http://www.markustegelane.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Teised kanalid

MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...

Lisainfo

Video RAW nimi: mamo.mp4
Kasutatud tarkvara: Sony Vegas Pro 11, Süsteem Android Oreo 8.0, ROM Nitrogen OS
Renderdamise aeg: NA, jätsin ööseks tegema Suvaline video: http://markustegelane.tk/random.html
AndroidOreoPart1Reupload.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markus Maal,MarkusTegelane,TheMarkusGuy,Markuse arvuti meelelahutus,Markus computer entertainment,Android 8.0,Android Oreo,Oreo N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/571.jpg N/A /channel_db_lite/web/json/571.json N/A N/A
570 MarkusTegelane++ [devUpdate 1] Blue Screen Simulator JS - First reveal 0 2024-05-07 The very first public showcase of Blue Screen Simulator JS, a Javascript blue screen simulator, which uses some Blue Screen Simulator Plus technologies. Please note that this project is still in early development and currently has known bugs. The devUpdate series showcases new features in development for the next version of the software.

Live version (still in beta): https://markusmaal.ee/BSSW
Beta source code (private): https://github.com/MarkusMaal/BlueScreenSimulatorWebsite
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/MarkusTegelane
0 1 0 1 https://www.youtube.com/watch?v=BjnkhZy19F8 0 [devUpdate 1] Blue Screen Simulator JS - First reveal [devUpdate 1] Blue Screen Simulator JS - First reveal The very first public showcase of Blue Screen Simulator JS, a Javascript blue screen simulator, which uses some Blue Screen Simulator Plus technologies. Please note that this project is still in early development and currently has known bugs. The devUpdate series showcases new features in development for the next version of the software.

Live version (still in beta): https://markusmaal.ee/BSSW
Beta source code (private): https://github.com/MarkusMaal/BlueScreenSimulatorWebsite
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/MarkusTegelane
The very first public showcase of Blue Screen Simulator JS, a Javascript blue screen simulator, which uses some Blue Screen Simulator Plus technologies. Please note that this project is still in early development and currently has known bugs. The devUpdate series showcases new features in development for the next version of the software.

Live version (still in beta): https://markusmaal.ee/BSSW
Beta source code (private): https://github.com/MarkusMaal/BlueScreenSimulatorWebsite
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.eu
Main channel: https://www.youtube.com/MarkusTegelane
bssw_du1.mp4 devUpdate devUpdate N/A MarkusTegelane++ MarkusTegelane++ 0 /channel_db_lite/web/thumbs/570.jpg /channel_db_lite/web/stream/570.mp4 /channel_db_lite/web/json/570.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
544 MarkusTegelane+ Kommentaar: Windows XP ja muu [Markuse arvuti meelelahutus+] 1 2023-05-22 Video loojana kommenteerin, mis toimub 2. hooaja viimases Markuse arvuti meelelahutuse episoodis.

Originaal: https://www.youtube.com/watch?v=8wJmYc9H0Q4
0 1 0 1 https://www.youtube.com/watch?v=1lgThc4ThRo 0 Kommentaar: Windows XP ja muu [Markuse arvuti meelelahutus+] . Video loojana kommenteerin, mis toimub 2. hooaja viimases Markuse arvuti meelelahutuse episoodis.

Originaal: https://www.youtube.com/watch?v=8wJmYc9H0Q4
. pastastyle_commentary.mp4 Lisavideod Additional content N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/544.jpg N/A /channel_db_lite/web/json/544.json N/A N/A
539 MarkusTegelane Windows XP ja muu [Markuse arvuti meelelahutus] 0 2023-05-14 Selles videos vaatame Windows XP-d. Võinoh, mitte päris... Saate eelmisest lausest aru kui vaatate selle video lõpuni.

Järgmine video: Sinise ekraani simulaator pluss Androidile

► *Lisamärkused*
Ma unustasin kogemata välja lülitada AI skaleerimise enda kaameras, seega mõned osad videod näevad natuke pastelsed välja. Vabandan selle pärast!

► *Seotud lingid*
Windows 10 Enterprise LTSC: https://learn.microsoft.com/en-us/windows/whats-new/ltsc/
Windows Experience Freestyle: https://archive.org/details/windows-experience-freestyle
The Sad Man (Jake Lava): https://www.youtube.com/watch?v=KqXbz4kIWGE

► *Muud 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*
https://pastebin.com/Si6t67zy

► *Lisainfo*
Failinimi: _PastaFreestyleR3.mp4_
Renderdamise aeg: 14 minutit, 41 sekundit
Stiil: MarkuStation C
Tarkvara: DaVinci Resolve, Windows Experience (Freestyle Update), ANXCamera, Aegisub, YTSubConverter
Lindistamise kuupäev: 12. mai 2023. a

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Lisakanal: youtube.com/@markusTegelanePlus
Progekanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC

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

► *Teemaviited*
#MarkuseArvutiMeelelahutus #S2E15 #kogemus
1 1 0 1 https://www.youtube.com/watch?v=8wJmYc9H0Q4 0 Windows XP and more [Markus computer entertainment] Windows XP ja muu [Markuse arvuti meelelahutus] In this video I'm going to take a look at Windows XP. Eh, sorta... You'll see what I mean after you watch the video.

Next video: Blue Screen Simulator Plus for Android

► *Additional notes*
I accidentally forgot to disable AI upscaling on my camera, so some sections are going to look a bit pastellic. Sorry about that!

► *Related links*
About Windows 10 Enterprise LTSC: https://learn.microsoft.com/en-us/windows/whats-new/ltsc/
Windows Experience Freestyle: https://archive.org/details/windows-experience-freestyle
The Sad Man (by Jake Lava): https://www.youtube.com/watch?v=KqXbz4kIWGE

► *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*
https://pastebin.com/Si6t67zy

► *Additional information*
Filename: _PastaFreestyleR3.mp4_
Render time: 14 minutes, 41 seconds
Style: MarkuStation C
Software used: DaVinci Resolve, Windows Experience (Freestyle Update), ANXCamera, Aegisub, YTSubConverter
Recording date: 12th May 2023

► *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

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

► *Hashtags*
#MarkusComputerEntertainment #S2E15 #experience
Selles videos vaatame Windows XP-d. Võinoh, mitte päris... Saate eelmisest lausest aru kui vaatate selle video lõpuni.

Järgmine video: Sinise ekraani simulaator pluss Androidile

► *Lisamärkused*
Ma unustasin kogemata välja lülitada AI skaleerimise enda kaameras, seega mõned osad videod näevad natuke pastelsed välja. Vabandan selle pärast!

► *Seotud lingid*
Windows 10 Enterprise LTSC: https://learn.microsoft.com/en-us/windows/whats-new/ltsc/
Windows Experience Freestyle: https://archive.org/details/windows-experience-freestyle
The Sad Man (Jake Lava): https://www.youtube.com/watch?v=KqXbz4kIWGE

► *Muud 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*
https://pastebin.com/Si6t67zy

► *Lisainfo*
Failinimi: _PastaFreestyleR3.mp4_
Renderdamise aeg: 14 minutit, 41 sekundit
Stiil: MarkuStation C
Tarkvara: DaVinci Resolve, Windows Experience (Freestyle Update), ANXCamera, Aegisub, YTSubConverter
Lindistamise kuupäev: 12. mai 2023. a

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Lisakanal: youtube.com/@markusTegelanePlus
Progekanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC

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

► *Teemaviited*
#MarkuseArvutiMeelelahutus #S2E15 #kogemus
PastaFreeStyleR3.mp4 Markuse arvuti meelelahutus Markus computer entertainment markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,Markuse arvuti meelelahutus,Markus computer entertainment,Windows XP,Windows Experience,Freestyle Update,Professional x64 Edition,HP Stream,creepypasta,Windows XP Horror Edition,League of Legends https://odysee.com/@MarkusTegelane:8/windows-xp-and-more-markus-computer:7 MarkusTegelane . 0 /channel_db_lite/web/thumbs/539.jpg N/A /channel_db_lite/web/json/539.json N/A N/A
540 MarkusTegelane+ Projekt 300 datamosh 1 2023-05-14 0 1 0 1 https://www.youtube.com/watch?v=514yLP_Mpu4 0 Projekt 300 datamosh . . TM300_datamoshed_Classic.mp4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/540.jpg N/A /channel_db_lite/web/json/540.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
525 MarkusTegelane 1 rada, 300 autot, 300 tellijat [TrackMania] 0 2023-02-04 Selle video jaoks tegin montaaži 300-st ühel rajal sõitvast autost mängus TrackMania. Ma salvestasin kordused TrackMania Nations Forever-is ja hiljem importisin mängu TrackMania² Stadium renderdamiseks ja esteetilistel põhjustel.

Järgmine video: ???

► *Muud 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*
Doo - Start Off (mängust TrackMania Nations ESWC)

► *Ajatemplid*
0:00 Intro
0:24 Montaaž
3:44 Tänu
4:15 Lõpuekraan

► *Lisainfo*
Faili nimi: TM300.mp4
Stiil: Sära
Tarkvara: TrackMania Nations Forever, TMInfinity, TrackMania² Stadium (Maniaplanet), DaVinci Resolve 18, paint.NET (pisipilt ja peidetud viited), Aegisub, YTSubConverter
Lindistamise kuupäev: 29. jaanuar 2023

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Lisakanal: youtube.com/@markusTegelanePlus
Progekanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC

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

► *Teemaviited*
#special #MarkuStation3 #TrackMania
1 1 0 1 https://www.youtube.com/watch?v=gpyEHl1GA1k 0 1 track, 300 cars, 300 subscribers [TrackMania] . In this video, I am showing a montage of 300 cars on a single track in TrackMania. I drove the replays in TrackMania Nations Forever and than later imported them to TrackMania² Stadium for rendering and aesthetics.

Next video: ???

► *Other links*
This is where you list links, which aren't directly related to the content.
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*
Doo - Start Off (from TrackMania Nations ESWC)

► *Timestamps*
0:00 Intro
0:24 The montage
3:44 Thank you!
4:15 End card

► *Additional information*
Filename: TM300.mp4
Style: Shine
Software used: TrackMania Nations Forever, TMInfinity, TrackMania² Stadium (Maniaplanet), DaVinci Resolve 18, paint.NET (for easter eggs and the thumbnail), Aegisub, YTSubConverter
Recording date: 29th January 2023

► *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

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

► *Hashtags*
#special #MarkuStation3 #TrackMania
. TM300.mp4 MarkuStation 3 MarkuStation 3 markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,TrackMania,subscriber special,300,Stadium,environment,formula race car,banana car N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/525.jpg N/A /channel_db_lite/web/json/525.json N/A N/A
522 MarkusTegelane+ Helendevad ruudud 1 2023-01-14 Eksperimenteerisin natuke 3D efektidega DaVinci Resolve tarkvaras. 0 1 0 1 https://www.youtube.com/watch?v=CBaObUmx-Ik 0 Shining squares . I messed around with 3D effects in DaVinci Resolve. . ShiningSquares.mp4 Varia Joke videos N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/522.jpg N/A /channel_db_lite/web/json/522.json N/A N/A
502 MarkusTegelane Samsung Dex ülevaade [Markuse arvuti meelelahutus] 0 2022-11-06 Selles videos teen ülevaate töölauliidesest Samsungi seadmetele - Samsung DeX-ist. AGIV

Järgmine video: Windows XP ja muu
VIGA

► Seotud lingid
Samsungi veebisait: https://samsung.com/ IGAV

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

► Lisainfo
Failinimi: PixliaInvasion.mp4
Stiil: Videol puudub kindel stiil
Kasutatud tarkvara: OBS Studio, Aegisub, DaVinci Resolve 18, Audacity, ffmpeg, OneUI 4.1.1 (Android 12)
Lindistamise kuupäev: 3. oktoober 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod

► Teemaviited
#S2E13 #MarkuseArvutiMeelelahutus #DeX
1 1 0 1 https://www.youtube.com/watch?v=MRmc4H9ZHyw 0 Samsung Dex overview [Markus computer entertainment] . In this video, I am taking a look at a desktop interface for premium Samsung mobile and tablet devices - Samsung DeX. ORRER

Next video: Windows XP and more
ERROR

► Related links
Samsung website: https://samsung.com/ RRORE

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

► Additional information
Original filename: PixliaInvasion.mp4
Style: This video doesn't have a specific style
Software used: OBS Studio, Aegisub, DaVinci Resolve 18, Audacity, ffmpeg, OneUI 4.1.1 (Android 12)
Recording date: 3rd October 2022

► Thank you for watching!
© 2022 Markus' videos

► Hashtags
#S2E13 #MarkusComputerEntertainment #DeX
. PixliaInvasion.mp4 Markuse arvuti meelelahutus Markus computer entertainment Samsung DeX,tablet mode,desktop UI,desktop mode,HDMI,High Definition Multimedia Interface,Pixlia,Pikslia,ERROR,VIGA,OBS Studio,Bluetooth,SMB,Samba,Type-C,USB-C,Samsung Galaxy Tab S7 FE,keyboard,mouse,tablet,tahvelarvuti,tahvelseade,Audacity,Markuse arvuti meelelahutus,Markus computer entertainment,MCE,simulated brains,static,analog horror,pink noise,AAAAAA,zombie brains N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/502.jpg N/A /channel_db_lite/web/json/502.json N/A /channel_db_lite/web/stream/502.en.ass
500 MarkusTegelane Momonga Linux 7 - Paigaldamine ja avastamine [Markuse arvuti meelelahutus] 0 2022-10-24 Selles videos näitan ma iseseisvat ja toetamata Linuxi distrot - Momonga Linuxit. See distro arendati Jaapanis ning sisaldab nii GNOME kui ka KDE töölaudu. Viimane uuendus loodi 2011. aastal.

► Seotud lingid
Distro veebisait: http://www.momonga-linux.org/
Kuvatõmmised: https://distrowatch.com/gallery.php?distribution=momonga

► Muud lingid
markustegelane ajaveeb: https://markustegelane.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)
Kanali veebisait: https://markustegelane.online

► Lisainfo
Algne failinimi: Momonga7_final.mp4
Stiil: LaservalgusV3
Tarkvara: VirtualBox, OBS Studio, Aegisub, kdenlive, DaVinci Resolve 18, Manjaro Linux (host), Momonga Linux 7 (virtuaalmasina opsüsteem), YTSubConverter
Lindistamise kuupäev: 29. mai 2021. a

► Aitäh, et vaatasite!
© 2022 Markuse videod

► Teemaviited
#S2E12 #MarkusComputerEntertainment #Momonga
1 1 0 1 https://www.youtube.com/watch?v=cDKmuXKD8hU 0 Momonga Linux 7 - Installation and exploration [Markus computer entertainment] . In this video, I am taking a look at an independent and unsupported Linux distribution - Momonga Linux. This distro was developed in Japan and includes both GNOME and KDE desktops. It was last updated in 2011.

► Related links
Distro website: http://www.momonga-linux.org/
Screenshots: https://distrowatch.com/gallery.php?distribution=momonga

► Other links
mmaal (markustegelane) blog: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)
Web site: https://markustegelane.online

► Additional information
Original filename: Momonga7_final.mp4
Style: LaservalgusV3
Software used: VirtualBox, OBS Studio, Aegisub, kdenlive, DaVinci Resolve 18, Manjaro Linux (host), Momonga Linux 7 (guest)
Recording date: 29th May 2021

► Thank you for watching!
© 2022 Markus' videos

► Hashtags
#S2E12 #MarkusComputerEntertainment #Momonga
. Momonga7_Final.mp4 Markuse arvuti meelelahutus Markus computer entertainment Momonga Linux,GNOME 2,KDE 4.5.3,K Desktop Environment,KDE 4,GNU/Linux,Linux,operating system,independent,distribution,distro,installation,unsupported,bazaar,Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation 3 https://odysee.com/@MarkusTegelane:8/momonga-linux-7-installation-and:a MarkusTegelane . 0 /channel_db_lite/web/thumbs/500.jpg N/A /channel_db_lite/web/json/500.json N/A /channel_db_lite/web/stream/500.en.ass
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
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
489 MarkusTegelane Mis juhtub, kui avate 6000 Chrome vahekaarti Windowsiga sülearvutis? [Markuse arvuti meelelahutus] 0 2022-09-25 Selles videos avame 6000 vahekaarti Google Chrome-is ning vaatame, kuidas Windowsiga arvuti sellele reageerib. Kuid, seekord ei kasuta me enam enda HP Stream sülearvutit, vaid hoopis teist rüperaali, mida ma sellel kanalil varem näidanud pole.

Järgmine video: Samsung Dex

► Seotud lingid
Google Chrome brauser: https://www.google.com/chrome
AutoHotkey skript: https://pastebin.com/AHhXYynZ
Monteerimata ekraanisalvestus: https://www.youtube.com/watch?v=gqhbM_lyqD0

► Teised lingid
Veebileht: https://markustegelane.online
Ajaveeb: https://markustegelane.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)

► Muusika
AIRGLOW – Cepheid Disk: https://youtu.be/p6iZ2_Q_MUc
Markus Maal – Harmoy
Professor Kliq – Tickly Me Pink (CC-BY-NC-SA)
Professor Kliq – Electric Telepathy (CC-BY-SA)
Alex Barbarian – Slices: https://youtu.be/dSrIGrPxmFQ
Professor Kliq – Surfs Up
Three Chain Links – Die Historic: https://youtu.be/ZyVq4HF8oRw
Markus Maal – Base Theme
Professor Kliq – Synapse (CC-BY-NC-SA)

Cipher Kevin MacLeod (incompetech.com)
Litsents: Creative Commons: autorile viitamine 3.0 Litsents
http://creativecommons.org/licenses/by/3.0/

► Lisainfo
Failinimi: GoogleOver6000.mp4
Stiil: MCE-2.0
Renderdamise aeg: 38 minutit, 37 sekundit
Lindistamise kuupäev: 28. august 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod

► Teemaviited
#GoogleChrome #Üle6000 #eksperiment
1 1 0 1 https://www.youtube.com/watch?v=O8nuECU6p0I 0 What happens, when you open 6000 Chrome tabs in a Windows laptop? [Markus computer entertainment] . In this video, we are going to open 6000 tabs in Google Chrome and seeing how a Windows computer is going to respond. However, in this video, we are not going to be using our HP Stream laptop, but instead, another laptop I haven't shown on this channel before.

Next video: Samsung Dex

► Related links
Google Chrome browser: https://www.google.com/chrome
AutoHotkey script: https://pastebin.com/AHhXYynZ
Unedited screen recording: https://www.youtube.com/watch?v=gqhbM_lyqD0

► Other links
Website: https://markustegelane.online
Blog: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)

► Music
AIRGLOW – Cepheid Disk: https://youtu.be/p6iZ2_Q_MUc
Markus Maal – Harmoy
Professor Kliq – Tickly Me Pink (CC-BY-NC-SA)
Professor Kliq – Electric Telepathy (CC-BY-SA)
Alex Barbarian – Slices: https://youtu.be/dSrIGrPxmFQ
Professor Kliq – Surfs Up
Three Chain Links – Die Historic: https://youtu.be/ZyVq4HF8oRw
Markus Maal – Base Theme
Professor Kliq – Synapse (CC-BY-NC-SA)

Cipher Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

► Additional information
Filename: GoogleOver6000.mp4
Style: MCE-2.0
Render time: 38 minutes, 37 seconds
Recording date: 28th August 2022

► Thank you for watching!
© 2022 Markus' videos

► Hashtags
#GoogleChrome #Over6000 #experiment
. GoogleOver6000.mp4 Markuse arvuti meelelahutus Markus computer entertainment Google Chrome,what happens if you open 6000 tabs,Windows,Windows 11,OBS,Open Broadcaster Software,waiting,loading,Markuse arvuti meelelahutus,Markus computer entertainment N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/489.jpg N/A /channel_db_lite/web/json/489.json N/A /channel_db_lite/web/stream/489.en.ass
488 MarkusTegelane+ MarkuStation logo kodeeritud helifaili // MarkuStation logo encoded into an audio file 1 2022-09-05 0 1 0 1 https://www.youtube.com/watch?v=JSpREp8AiaI 0 . . . . ms_music.mp4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 0 /channel_db_lite/web/thumbs/488.jpg N/A /channel_db_lite/web/json/488.json N/A N/A
486 Press any key to continue... (Almost) All MIDI songs [Microsoft Clip Organizer] 0 2022-08-31 Microsoft Clip Organizer was a clip art organizing software, which allowed users to find drawings, photographs, sounds, videos, and other media clips to include in presentations, publications, and other Office documents. It cam with a variety of stock media clips and offered more selection on the Microsoft Office Online website.
(source: https://en.wikipedia.org/wiki/Microsoft_Office_shared_tools#Clip_Organizer)

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

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

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

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

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

Next video: Computer tips

► Related links
DistroWatch page: https://distrowatch.com/table.php?distribution=mx
MX Linux blog: https://mxlinux.org/blog/
Xfce desktop environment: https://xfce.org/
Screenshot: https://i.imgur.com/wz2LpNN.png
Blog post for this video: https://markustegelane-en.blogspot.com/2022/08/mx-linux-overview-on-mmaal.html

► Other links
mmaal (markustegelane) blog: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)
Web site: https://markustegelane.ml

► Music
Wallpaper Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Inspired Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Presenterator Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Screen Saver by Kevin MacLeod
Link: https://incompetech.filmmusic.io/song/5715-screen-saver
License: https://filmmusic.io/standard-license

Professor Kliq - Surfs Up
Professor Kliq - The Most Beautiful Day (2013 Instrumental)
Vibe Tracks - Dutty
Elwood Productions - Agony
Silent Partner - Hold On a Minute
Silent Partner - Tobaggan
ALBIS - New Land
Markus Maal - Techiesong

► Additional information
Original filename: MAMES2E10.mp4
Style: LaservalgusV3
Render time: Too long
Recording date: 10th August 2022 (camera footage) and 11th August 2022 (screen capture)

► Thank you for watching!
© 2022 Markus' videos

► Hashtags
#S2E10 #MarkusComputerEntertainment #MXLinux
Selles videos vaatan ma kõige populaarsemat distrot veebilehel DistroWatch.com - MXLinux!

Järgmine video: Arvuti nõuanded

► Teemaga seotud lingid
DistroWatch lehekülg: https://distrowatch.com/table.php?distribution=mx
MX Linux ajaveeb: https://mxlinux.org/blog/
Xfce töölaud: https://xfce.org/
Kuvapilt: https://i.imgur.com/wz2LpNN.png
Blogipostitus selle video kohta: https://markustegelane.blogspot.com/2022/08/mx-linux-ulevaade-markustegelane-kanalil.html

► Teised lingid
markustegelane ajaveeb: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)
Veebileht: https://markustegelane.ml

► Muusika
Wallpaper Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Inspired Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Presenterator Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Screen Saver by Kevin MacLeod
Link: https://incompetech.filmmusic.io/song/5715-screen-saver
License: https://filmmusic.io/standard-license

Professor Kliq - Surfs Up
Professor Kliq - The Most Beautiful Day (2013 Instrumental)
Vibe Tracks - Dutty
Elwood Productions - Agony
Silent Partner - Hold On a Minute
Silent Partner - Tobaggan
ALBIS - New Land
Markus Maal - Techiesong

► Lisainfo
Algne failinimi: MAMES2E10.mp4
Stiil: LaservalgusV3
Renderdamise aeg: Liiga kaua
Lindistamise kuupäev: 10. august 2022 (kaamerapilt) ja 11. august 2022 (kuvahõive)

► Aitäh, et vaatasite!
© 2022 Markuse videod

► Teemaviited
#S2E10 #MarkuseArvutiMeelelahutus #MXLinux
MAMES2E10_MXLinux.mp4 Markuse arvuti meelelahutus Markus computer entertainment MX Linux,antiX,no systemd distributions,GNU/Linux,Linus Torvalds is the god of Linux,I'd like to interject for a moment,Linux,operating system,Ma tahaksin korraks vahele astuda,HP Stream,Markuse arvuti meelelahutus,Markus computer entertainment,S2E10,MarkuStation on päris,200 eurot,brokkoli,MinecraftTegelane,M.C.E.,Insyde,LCD,I'm blue,Tegelane on mõistuse kaotanud - tema arvates MarkuStationi ei eksisteeri,ma kulutasin liiga kaua aega nende siltide peale,Eesti,Estonia https://odysee.com/@MarkusTegelane:8/discovering-mxlinux-(gnu-linux)-markus:5 MarkusTegelane . 1 /channel_db_lite/web/thumbs/482.jpg N/A /channel_db_lite/web/json/482.json N/A /channel_db_lite/web/stream/482.en.ass
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
476 MarkusTegelane Veebibrauser, mis on operatsioonsüsteem - Chrome OS Flex [Markuse arvuti meelelahutus] 0 2022-08-06 Kas te teadsite, et on olemas versioon Google Chrome-ist, mis on tegelikult operatsioonsüsteem? Selles videos me vaatamegi sellist opsüsteemi! Chrome OS Flex on eriline versioon Chrome OS-ist, mida saab käivitada arvutites, mis ei olnud disainitud selle OS-i jaoks. See operatsioonsüsteem toimib sarnaselt Firefox OS-il, kuid see on loodud sülearvutitele, mitte telefonidele. 1 1 0 1 https://www.youtube.com/watch?v=mW9tSYo6xlM 0 A web browser that is an operating system - Chrome OS Flex [Markus Computer Entertainment] . Did you know that there is a version of Google Chrome that is actually an operating system? Well, in this video we're taking a look at such an operating system! Chrome OS Flex is a special version of Chrome OS, which works in computers that were not specifically built for this OS. This operating system works similar to Firefox OS, but instead of being made for phones, it's for laptops.

Next video: MX Linux

► Links
More about Chrome OS Flex: https://cloud.google.com/blog/products/chrome-enterprise/chrome-os-flex
More about Chrome OS: https://chromeenterprise.google/os/
Website: https://markustegelane.ml/
Blog: https://markustegelane-en.blogspsot.com/ (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)
Other channels: https://www.youtube.com/c/MarkusMaal/channels

► Music (Creative Commons references)
There It Is Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

Adventures In Adventureland by Kevin MacLeod
Link: https://incompetech.filmmusic.io/song/8287-adventures-in-adventureland
License: https://filmmusic.io/standard-license

Other references listed in video credits or tagged by YouTube under the description.

► Other info
Original filename: ChromeOSFlex.mp4
Style: LaservalgusV3
Render time: 49 minutes, 20 seconds + 36 minutes, 50 seconds (original + re-render) = 86 minutes, 10 seconds (total)
Recording date: 1st August 2022

► Thank you for watching!
© 2022 Markus' videoss
Kas te teadsite, et on olemas versioon Google Chrome-ist, mis on tegelikult operatsioonsüsteem? Selles videos me vaatamegi sellist opsüsteemi! Chrome OS Flex on eriline versioon Chrome OS-ist, mida saab käivitada arvutites, mis ei olnud disainitud selle OS-i jaoks. See operatsioonsüsteem toimib sarnaselt Firefox OS-il, kuid see on loodud sülearvutitele, mitte telefonidele.

Järgmine video: MX Linux

► Lingid
Lisalugemist Chrome OS Flex kohta: https://cloud.google.com/blog/products/chrome-enterprise/chrome-os-flex
Lisalugemist Chrome OS kohta: https://chromeenterprise.google/os/
Veebileht: https://markustegelane.ml/
Ajaveeb: https://markustegelane.blogspsot.com/ (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels

► Muusika (Creative Commons viited)
There It Is - Kevin MacLeod (incompetech.com)
Litsentsitud Creative Commons: By Attribution 3.0 litsentsi kaudu
http://creativecommons.org/licenses/by/3.0/

Adventures In Adventureland - Kevin MacLeod
Link: https://incompetech.filmmusic.io/song/8287-adventures-in-adventureland
Litsents: https://filmmusic.io/standard-license

Muud viited video lõputiitrites või märgitud YouTube poolt kirjelduse all.

► Lisainfo
Originaalne failinimi: ChromeOSFlex.mp4
Stiil: LaservalgusV3
Renderdamise aeg: 49 minutit, 20 sekundit + 36 minutit, 50 sekundit (originaalversioon + taasrenderdatud versioon) = 86 minutit, 10 sekundit (kokku)
Lindistuskuupäev: 1. august 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod
ChromeOSFlex.mp4 Markuse arvuti meelelahutus Markus computer entertainment Chrome OS Flex,Google Chrome,MarkuStation,Markus Computer Entertainment,Markuse arvuti meelelahutus,pitsa,pizza,botaanik,kahtlased kontopildid,suspicous account pictures,Google Chrome OS,Google,material design,HP Stream Notebook 11,Chromebook,Chrome Notebook,laptop,sülearvuti,kaasaskantav arvuti,Sony WH-CH150,11-r000na,Sandisk Cruzer Pop 16GB https://odysee.com/@MarkusTegelane:8/a-web-browser-that-is-an-operating:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/476.jpg N/A /channel_db_lite/web/json/476.json N/A /channel_db_lite/web/stream/476.en.ass
473 Press any key to continue... Beetle Crazy Cup (a.k.a. Beetle Buggin) [PC Longplay] 0 2022-07-27 Full gameplay of Beetle Crazy Cup (2000) without commentary. 0 1 0 0 https://www.youtube.com/watch?v=xsL3shSyn4A 0 . . . . Beetle-1.m4v Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/473.jpg N/A /channel_db_lite/web/json/473.json N/A N/A
460 MarkusTegelane++ PowerPointi mäng - Movement Point 0 2022-07-04 See video demonstreerib PowerPointi mängu, mille tegin, mis on port Movement Batch-ist. See oli alguses nali, aga ma üritasin välja selgitada, kas see on päriselt võimalik. Noh, see video annab teile vastuse. 1 1 0 1 https://www.youtube.com/watch?v=dhqy5G9yvqs 0 Pushing PowerPoint to its limits - Movement Point . This video demonstrates a PowerPoint game I made, which is a port of Movement Batch. It started off as a joke, but I was thinking if it was actually possible. Well, in this video, we'll find out.

Downloads: https://drive.google.com/drive/folders/188K4IxAvX6pvclajD5TL7szZEZheVcFa?usp=sharing

Chapters:
0:00 Demonstration
2:39 How do you make a game like this in PowerPoint
6:08 Macro overview
11:26 Making a custom map
See video demonstreerib PowerPointi mängu, mille tegin, mis on port Movement Batch-ist. See oli alguses nali, aga ma üritasin välja selgitada, kas see on päriselt võimalik. Noh, see video annab teile vastuse.

Allalaadimised: https://drive.google.com/drive/folders/188K4IxAvX6pvclajD5TL7szZEZheVcFa?usp=sharing

Peatükid:
0:00 Demonstratsioon
2:39 Kuidas on võimalik üldse sellist mängu PowerPointi teha
6:08 Makro ülevaade
11:26 Kohandatud väljaku loomine
MovementPoint.mp4 PowerPoint PowerPoint https://odysee.com/@hashMarkusTegelane:3/MovementPoint:5 MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/460.jpg /channel_db_lite/web/stream/460.mp4 /channel_db_lite/web/json/460.json /channel_db_lite/web/stream/460.et.ass /channel_db_lite/web/stream/460.en.ass
458 MarkusTegelane [Pakkfail] Draw Batch 0 2022-07-01 Draw Batch on üks huvitav väike tööriist, mis on kirjutatud batch keeles. See võimaldab teil luua kohandatud joonistusi kasutades ainult tähemärke. 1 1 0 1 https://www.youtube.com/watch?v=SNgEIw2EYlk 0 [Pakkfail] Draw Batch . Draw Batch is a cool little tool written in batch, which allows you to make custom drawings using only text characters.

► Download links

Readme (READ THIS BEFORE DOWNLOADING)
Google Docs link: https://docs.google.com/document/d/16ZsPFsobUO3F8Y5sIvBpNiQw3jDRRGNn88ZzL9oxlZo/edit?usp=sharing

Draw Batch (dependencies are self-contained)
Checksum (MD5): 4C246E5AFA5F53D6E100F8576831A407
Link: https://drive.google.com/file/d/1dh3BidJVUlc1UxXxXrTOjP4bB9IE3l07/view?usp=sharing (draw_batch.bat, 259844 bytes)

Sample Media Pack
Checksum (MD5): 909B5CCEA019782E8C4286527804DD19
Link: https://drive.google.com/file/d/1yEaKFcFOlORNZpbTRKZjTrGvRQd9wymi/view?usp=sharing (Draw Batch Sample Media Pack.zip, 34072 bytes)

Image Conversion Tool (requires .NET 5.0 runtime)
Checksum (MD5): 1ED3958DD19EE84685111D08E4B58288
Link: https://drive.google.com/file/d/1uhzWkIQKMEkE0_UykzKe1JvI8kBsYTO5/view?usp=sharing (PalletteMaker.exe, 179139 bytes)


► Music

Perspectives Kevin MacLeod (incompetech.com), Licensed under Creative Commons: By Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/)
Vibe Tracks - Invisible
Vibe Tracks - Dutty
Vibe Tracks - Nice To You
Riot - HTML
Jimmy Fontanez - Follow Me
Twin Musicom - Precipice
Jason Farnham - Microchip
Jason Shaw - Drifting (Music by Audionautix.com)

► Other links

Website: https://markustegelane.ml/
Blog: https://markustegelane-en.blogspsot.com/
Other channels: https://www.youtube.com/c/MarkusMaal/channels

► Thanks for watching!
© 2022 Markus' videos
Draw Batch on üks huvitav väike tööriist, mis on kirjutatud batch keeles. See võimaldab teil luua kohandatud joonistusi kasutades ainult tähemärke.

► Allalaadimise lingid

Loe mind (inglise keeles)
Google Docs link: https://docs.google.com/document/d/16ZsPFsobUO3F8Y5sIvBpNiQw3jDRRGNn88ZzL9oxlZo/edit?usp=sharing

Draw Batch
Kontrollsumma (MD5): 4C246E5AFA5F53D6E100F8576831A407
Link: https://drive.google.com/file/d/1dh3BidJVUlc1UxXxXrTOjP4bB9IE3l07/view?usp=sharing (draw_batch.bat, 259844 baiti)

Näidismeediumi pakk
Kontrollsumma (MD5): 909B5CCEA019782E8C4286527804DD19
Link: https://drive.google.com/file/d/1yEaKFcFOlORNZpbTRKZjTrGvRQd9wymi/view?usp=sharing (Draw Batch Sample Media Pack.zip, 34072 baiti)

Kujutise teisendamise tööriist (vajalik .NET 5.0 runtime)
Kontrollsumma (MD5): 1ED3958DD19EE84685111D08E4B58288
Link: https://drive.google.com/file/d/1uhzWkIQKMEkE0_UykzKe1JvI8kBsYTO5/view?usp=sharing (PalletteMaker.exe, 179139 baiti)


► Muusika

Perspectives Kevin MacLeod (incompetech.com), Licensed under Creative Commons: By Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/)
Vibe Tracks - Invisible
Vibe Tracks - Dutty
Vibe Tracks - Nice To You
Riot - HTML
Jimmy Fontanez - Follow Me
Twin Musicom - Precipice
Jason Farnham - Microchip
Jason Shaw - Drifting (Music by Audionautix.com)

► Teised lingid

Veebileht: https://markustegelane.ml/
Ajaveeb: https://markustegelane.blogspsot.com/
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels

► Aitäh, et vaatasite!
© 2022 Markuse videod
draw_batch.mp4 Pakkfailid Batch files Draw Batch,batch file,batch paint,character paint,character drawing,ASCII art,ansicon,ANSI.SYS,DOS art,16 colors,dithering,ghost,face reveal,beard reveal,Movement Batch https://odysee.com/@MarkusTegelane:8/batch-file-draw-batch:a MarkusTegelane . 1 /channel_db_lite/web/thumbs/458.jpg N/A /channel_db_lite/web/json/458.json /channel_db_lite/web/stream/458.et.ass N/A
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
452 MarkusTegelane Windowsi käivitus- ja sulgemishelid - eriti kõrge helikõrgusega 0 2022-05-21 Selles videos esitan käivitus- ja sulgemishelisid mitmest Microsoft Windows-i versioonist. Esitan ka variatsioonid nendest helidest, kus ma tõstsin helikõrgust ekstreemsele tasemele kasutades Audacity tarkvara.

Märkused versioonidest, mida ma ei lisanud:
- Windows 2000 helid on identsed Windows ME-ga (Millennium Edition), mistõttu ma esimest eraldi siia videosse ei lisanud
- Windows NT 5.0, Windows Longhorn, Windows Server 2003 käivitumis- ja sulgemishelisid ma ei lisanud, sest need on kas fännide loodud või pärinevad kolmanda osapoole heliskeemist
- Windows 7-10 on Windows Vista-ga identsed käivitumise ja sulgemise helid, mistõttu need pole siin videos. Windows 8-s ja hilisemates versioonides on helid vaikesättena välja lülitatud, kuid need saab teatud registrihäkkidega sisse lülitada
- Windows 11 sulgemisheli on identne Vista sulgemisheliga ning vaikesättena välja lülitatud, mistõttu ma ka seda videosse ei lisanud
- Nii palju kui olen uurinud, siis Windows CE-l puudub sulgemisheli, öelge kommentaarides kui mul pole selles osas õigus
- Windows NT 4 helid on "peidetud" seni kuni lülitate sisse helidraiveri. Ning jah, need helid on ametlikud.
0 1 0 1 https://www.youtube.com/watch?v=U0K8eqnI4pc 0 Windows startup and shutdown sounds - extremely high pitch . In this video, I play startup and shutdown sounds from several releases of Microsoft Windows. I also play versions, which have the pitch increased to an extreme level in Audacity.

Some notes about stuff that I didn't include:
- Windows 2000 has the same sound as ME, so I didn't include it separately
- Windows NT 5.0, Windows Longhorn, Windows Server 2003 startup and shutdown sounds aren't included, because they're fan-made or from a third-party sound scheme
- Windows 7-10 have the same startup and shutdown sounds as Windows Vista, which is why they aren't included. In Windows 8 and later, the sounds are disabled by default, but you can enable them with certain registry hacks
- Windows 11 shutdown sound is identical to Windows Vista and disabled by default, which is why I didn't include it
- AFAIK, Windows CE doesn't have a shutdown sound, let me know in the comments if I'm wrong
- Windows NT 4 sounds are "hidden" until you enable the audio driver. And yes, these sounds are official.

Sources:
Animated Windows ME bootscreen: https://www.deviantart.com/oscareczek/art/Windows-Millenium-Edition-boot-screen-537277802
Windows XP logo wallpaper: https://cdn.wallpapersafari.com/42/74/3APKBn.jpg
Windows Vista logo wallpaper: https://cdn.wallpapersafari.com/77/83/7MBn1N.jpg
Windows Sun Valley (Windows 11) logo: https://i3g4v6w8.stackpathcdn.com/wp-content/uploads/2021/06/windows-11-next-gen-logo_hero-1536x994.jpg
Windows CE logo: https://bit.ly/385sMMH
Windows 98 boot logo: https://bit.ly/3lPdvmJ
Windows NT 4.0 Workstation default wallpaper: https://wallpapercave.com/wp/wp4034005.jpg
Windows 95 bootscreen: http://www.virtualdesktop.org/complete/95a/loading.png
Windows 3.1 boot logo: https://wallpapermemory.com/uploads/649/windows-3-1-background-full-hd-378586.jpg
Colored Windows 10 logo: https://www.softzone.es/app/uploads-softzone.es/2021/03/Logo-Windows-10-coloreado-xREAMED.jpg

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

Chapters:
0:00 Intro
0:06 Windows 3.1x
0:11 Windows 95
0:28 Windows NT 4.0 (New Technology)
1:09 Windows 98
1:32 Windows ME (Millennium Edition)
1:53 Windows XP (eXPerience)
2:11 Windows CE (Compact Edition)
2:12 Windows Vista
2:24 Windows 11
2:31 Outro

Other info:
Filename: windows_sound_highpitch.mp4
Encoder preset: NVENC H264 VBR
Render time: 5 minutes, 45 seconds
Editing software: kdenlive (video), Audacity (audio)

Thank you for watching!
©2022 Markus' videos productions
Selles videos esitan käivitus- ja sulgemishelisid mitmest Microsoft Windows-i versioonist. Esitan ka variatsioonid nendest helidest, kus ma tõstsin helikõrgust ekstreemsele tasemele kasutades Audacity tarkvara.

Märkused versioonidest, mida ma ei lisanud:
- Windows 2000 helid on identsed Windows ME-ga (Millennium Edition), mistõttu ma esimest eraldi siia videosse ei lisanud
- Windows NT 5.0, Windows Longhorn, Windows Server 2003 käivitumis- ja sulgemishelisid ma ei lisanud, sest need on kas fännide loodud või pärinevad kolmanda osapoole heliskeemist
- Windows 7-10 on Windows Vista-ga identsed käivitumise ja sulgemise helid, mistõttu need pole siin videos. Windows 8-s ja hilisemates versioonides on helid vaikesättena välja lülitatud, kuid need saab teatud registrihäkkidega sisse lülitada
- Windows 11 sulgemisheli on identne Vista sulgemisheliga ning vaikesättena välja lülitatud, mistõttu ma ka seda videosse ei lisanud
- Nii palju kui olen uurinud, siis Windows CE-l puudub sulgemisheli, öelge kommentaarides kui mul pole selles osas õigus
- Windows NT 4 helid on "peidetud" seni kuni lülitate sisse helidraiveri. Ning jah, need helid on ametlikud.

Allikad:
Animeeritud Windows ME buutimisekraan: https://www.deviantart.com/oscareczek/art/Windows-Millenium-Edition-boot-screen-537277802
Windows XP logo taustapilt: https://cdn.wallpapersafari.com/42/74/3APKBn.jpg
Windows Vista logo taustapilt: https://cdn.wallpapersafari.com/77/83/7MBn1N.jpg
Windows Sun Valley (Windows 11) logo: https://i3g4v6w8.stackpathcdn.com/wp-content/uploads/2021/06/windows-11-next-gen-logo_hero-1536x994.jpg
Windows CE logo: https://bit.ly/385sMMH
Windows 98 buutimis/sulgumislogo: https://bit.ly/3lPdvmJ
Windows NT 4.0 tööjaama versiooni vaiketaustapilt: https://wallpapercave.com/wp/wp4034005.jpg
Windows 95 buutimisekraan: http://www.virtualdesktop.org/complete/95a/loading.png
Windows 3.1 buutimislogo: https://wallpapermemory.com/uploads/649/windows-3-1-background-full-hd-378586.jpg
Värviline Windows 10 logo: https://www.softzone.es/app/uploads-softzone.es/2021/03/Logo-Windows-10-coloreado-xREAMED.jpg

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

Peatükid:
0:00 Intro
0:06 Windows 3.1x
0:11 Windows 95
0:28 Windows NT 4.0 (New Technology ehk Uus Tehnoloogia)
1:09 Windows 98
1:32 Windows ME (Millennium Edition ehk millenniumi väljaanne)
1:53 Windows XP (eXPerience ehk kogemus)
2:11 Windows CE (Compact Edition ehk kompaktne väljaanne)
2:12 Windows Vista
2:24 Windows 11
2:31 Outro

Lisainfo:
Faili nimi: windows_sound_highpitch.mp4
Enkooderi eelseadistus: NVENC H264 VBR
Renderdamise aeg: 5 minutit, 45 sekundit
Monteerimise tarkvara: kdenlive (video), Audacity (heli)

Aitäh, et vaatasite!
©2022 Markuse videod productions
windows_sound_highpitch.mp4 Operatsioonsüsteemid Operating systems Windows,startup sound,shutdown sound,Windows CE,Windows NT,Windows XP,Windows 11,Windows Vista,Windows 3.1,Windows 95,Windows 98,Windows ME,millennium edition,second edition,first edition,high pitch,audio editing,sound manipulation https://odysee.com/@MarkusTegelane:8/windows-startup-and-shutdown-sounds:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/452.jpg N/A /channel_db_lite/web/json/452.json N/A 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
443 MarkusTegelane Kuidas näha arvuti graafikakaardi informatsiooni (Windows 11 puhul) [Arvuti nõuanded] (reupload) 0 2022-05-05 Kuna Microsoft muutis opsüsteemi elementide paigutust, oli vaja luua uus video selle arvuti nõuande jaoks.

Windows 7 õpetus: https://www.youtube.com/watch?v=Wkll_...
Windows XP õpetus: https://www.youtube.com/watch?v=8NNgq...

Taustamuusika: Bensound - Funky Element
0 1 0 1 https://www.youtube.com/watch?v=PBf1hL8j6dk 0 How to see graphics card information (Windows 11) [Computer tips] (reupload) . Due to the fact that Microsoft has changed the layout of their operating system once again, a more up to date tutorial was needed.

Windows 7 tutorial: https://www.youtube.com/watch?v=Wkll_JKoYc8
Windows XP tutorial: https://www.youtube.com/watch?v=8NNgqUCKHVo

Background music: Bensound - Funky Element (bensound.com)
Kuna Microsoft muutis opsüsteemi elementide paigutust, oli vaja luua uus video selle arvuti nõuande jaoks.

Windows 7 õpetus: https://www.youtube.com/watch?v=Wkll_JKoYc8
Windows XP õpetus: https://www.youtube.com/watch?v=8NNgqUCKHVo

Taustamuusika: Bensound - Funky Element (bensound.com)
gpu_info_basic11_pass2.mp4 Arvuti nõuanded Computer tips arvutid,Windows 11,computer,graafikakaart,GPU,graphics card,informatsioon,teave,riistvara info,hardware info https://odysee.com/@MarkusTegelane:8/how-to-see-graphics-card-information:9 MarkusTegelane . 1 /channel_db_lite/web/thumbs/443.jpg N/A /channel_db_lite/web/json/443.json N/A N/A
437 MarkusTegelane+ Kaadrisageduse tõstmine tehisintellektil põhineva interpolatsiooni abil (eksperiment) 1 2022-04-29 See on monteerimata versioon minu Android seadme turvarežiimi käivitamise videost. Erinevalt originaalist, duubeldasin ma video kaadrisagedust kasutades Flowframes 1.32.0 tarkvara. Et näha videot suurendatud kaadrisagedusega, valige maksimaalne videokvaliteet (720p60). 0 1 0 1 https://www.youtube.com/watch?v=P6PusVdbjOE 0 Increasing the frame rate using interpolation based on artificial intelligence (experiment) . This is the unedited version of my "how to boot and Android device to safe mode" video. Unlike the original, here I doubled the framerate using the Flowframes 1.32.0 software. To see the video with the increased framerate, choose the maximum possible video quality (720p60).

Original framerate: 29.82 FPS
Interpolated framerate: 59.67 FPS
Edited version: https://www.youtube.com/watch?v=PWooXTjeI_0
See on monteerimata versioon minu "kuidas käivitada Android seade turvarežiimi" videost. Erinevalt originaalist, duubeldasin ma video kaadrisagedust kasutades Flowframes 1.32.0 tarkvara. Et näha videot suurendatud kaadrisagedusega, valige maksimaalne videokvaliteet (720p60).

Originaalne kaadrisagedus: 29,82 k/s
Interpoleeritud kaadrisagedus: 59,67 k/s
Monteeritud video: https://www.youtube.com/watch?v=PWooXTjeI_0
safemode-2x-RIFE-RIFE3.1-59.66667fps.mp4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/437.jpg N/A /channel_db_lite/web/json/437.json N/A N/A
428 MarkusTegelane MultiROM - mitu opsüsteemi ühes Android seadmes [Markuse arvuti meelelahutus special] 0 2022-04-24 Selles videos ma näitan seda kuidas ma sain käivitada mitut opsüsteemi ühe Android seadmega kasutades MultiROM-i.

See on ilmselt viimane Android ROM-ide video, mille ma teen (üks põhjusi, miks see on märgitud eriepisoodiks), vähemalt seni kuni ma midagi huvitavat, mida videos saaks näidata, ei leia...h
1 1 0 1 https://www.youtube.com/watch?v=G-QaiT5ATd0 0 MultiROM - multiple ROMs on a single Android device [Markus computer entertainment special] . In this video, I will showcase how I was able to boot multiple operating systems with a single Android device using MultiROM by Tassadar.

This is probably the last Android ROM video I'll make (which is one of the reasons this video is marked as "special"), unless I find something more interesting to cover here...

Official MultiROM repository: https://github.com/Tasssadar/multirom
Unofficial MultiROM repositories: https://github.com/multirom-dev
Channel website: https://markustegelane.ml
Want to see how many people have disliked this video? Then install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Music:
Jeremy Blake - Absolutely Nothing (intro)
Malmen - Icebreaker
Malmen - Heartbleed
Dan Lebowitz - Tiptoe Out the Back
Professor Kliq - Surfs Up
ACME - Guardian Dragon

Software:
NLE (video editor) - kdenlive
Image editing - Gimp
Audio editing - Audacity
Subtitle editor - Aegisub
Subtitle converter - YTSubConverter 1.6.0

Edited by: Markus Maal (me)

Chapters:
0:00 Intro
0:26 Context explanation
0:55 Basic feature showcase
3:16 Booting internal ROM
3:41 MultiROM Manager (app)
5:00 Booting secondary ROM (Firefox OS)
6:13 MultiROM recovery showcase
10:20 Attempting to add a new ROM + boot
12:19 Explaining how the secondary ROMs boot
13:45 ROM swapping explained
14:38 Kernel panic showcase
15:09 Booting secondary ROM (MIUI 8)
17:26 I literally can't speak today
17:42 One more thing
19:14 Ending
19:23 End screen

Thank you for watching!
© 2022 Markus' Videos Productions
Selles videos ma näitan seda kuidas ma sain käivitada mitut opsüsteemi ühe Android seadmega kasutades MultiROM-i.

See on ilmselt viimane Android ROM-ide video, mille ma teen (üks põhjusi, miks see on märgitud eriepisoodiks), vähemalt seni kuni ma midagi huvitavat, mida videos saaks näidata, ei leia...

Ametlik MultiROM-i repositoorium: https://github.com/Tasssadar/multirom
Mitte-ametlikud MultiROM-i repositooriumid: https://github.com/multirom-dev
Kanali veebileht: https://markustegelane.ml
Tahate näha mitu inimest on pannud sellele videole dislike? Siis paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Muusika:
Jeremy Blake - Absolutely Nothing (intro)
Malmen - Icebreaker
Malmen - Heartbleed
Dan Lebowitz - Tiptoe Out the Back
Professor Kliq - Surfs Up
ACME - Guardian Dragon

Tarkvara:
NLE (video monteerimine) - kdenlive
Pilditöötlus - Gimp
Helitöötlus - Audacity
Subtiitrite loomine - Aegisub
Subtiitrite teisendamine - YTSubConvert 1.6.0

Monteeris: Markus Maal (mina)

Peatükid:
0:00 Intro
0:26 Kontekst
0:55 Põhifunktsionaalsus
3:16 Sisemise ROMi buutimine
3:41 MultiROM Manager (äpp)
5:00 Sekundaarse ROMi buutimine (Firefox OS)
6:13 MultiROM taastekeskkond
10:20 Uue ROMi lisamise katse + buutimine
12:19 Seletan kuidas sekundaarseid ROMe buutitakse
13:45 ROMide vahetamine seletatud
14:38 Tuumašokk
15:09 Sekundaarse ROMi buutimine (MIUI 8)
17:26 Ma ei oska sõna otses mõttes rääkida
17:42 Veel üks asi
19:14 Lõpetuseks
19:23 Lõpuekraan

Aitäh, et vaatasite!
© 2022 Markuse Videod Productions
multirom.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,eesti keeles,English subtitles,Linux,Android,Firefox OS,Rabbitnovitch,MIUI 8,MultiROM,root,unlocked bootloader,recovery mode,TeamWin Recovery Project,TWRP https://odysee.com/@MarkusTegelane:8/multirom-multiple-roms-on-a-single:a MarkusTegelane . 1 /channel_db_lite/web/thumbs/428.jpg N/A /channel_db_lite/web/json/428.json N/A /channel_db_lite/web/stream/428.en.ass
427 MarkusTegelane FreeBSD - esimene paigaldamine ja töölaua seadistamine [Markuse arvuti meelelahutus] 0 2022-04-19 Selles videos paigaldan ma esimest korda FreeBSD operatsioonsüsteemi ja seadistan lihtsa töölaualiidese. Pange tähele, et tegemist EI OLE ÕPETUSEGA!!! Palun lugege ametlikku FreeBSD dokumentatsiooni ja veebisaiti põhjalike juhiste jaoks.

Videos näidatud FreeBSD versioon on 13.0. Olenevalt sellest, millal te videot vaatate, hilisem versioon võib olla saadaval.
1 1 0 1 https://www.youtube.com/watch?v=GtUZG-60tCg 0 FreeBSD - first time installation and desktop setup [Markus computer entertainment] . In this video, I'm going to experience the FreeBSD operating for the first time and setup a basic desktop interface. Please keep in mind that this video IS NOT A TUTORIAL!!! Please refer to official FreeBSD documentation and website for detailed instructions.

The version of FreeBSD show in the video is 13.0. Depending on the time you're watching this, a newer version may be available.

More about FreeBSD: https://www.freebsd.org/
Channel website: https://markustegelane.ml
Want to see how many people disliked this video? Then install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Chapters:
0:00 Intro (the weird version)
0:28 Setting up virtual machine
2:15 Setting up and installing FreeBSD
8:03 Failing to create a user account
8:58 Booting FreeBSD for the first time and trying some commands
10:25 Trying to install display server, session manager and desktop environment
13:46 Finally on the desktop
14:55 No internet connection
15:18 Web browsing: Playing YouTube videos
15:49 Other stuff
16:40 Conclusion
17:07 Credits
18:00 End screen

Creative Commons background music references:

Airport Lounge - Disco Ultralounge and Chee Zee Lab - Netherworld Shanty from Kevin MacLeod are licences under Creative Commons Attribution 4.0. https://creativecommons.org/licenses/by/4.0/

Sources:
Airport Lounge: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100806 (http://incompetech.com/)
Chee Zee Lab: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100683 (http://incompetech.com/)

Additional background music is referenced in the credits of the video and by YouTube under the video description.

Thank you for watching!
© 2022 Markus' Videos Productions
Selles videos paigaldan ma esimest korda FreeBSD operatsioonsüsteemi ja seadistan lihtsa töölaualiidese. Pange tähele, et tegemist EI OLE ÕPETUSEGA!!! Palun lugege ametlikku FreeBSD dokumentatsiooni ja veebisaiti põhjalike juhiste jaoks.

Videos näidatud FreeBSD versioon on 13.0. Olenevalt sellest, millal te videot vaatate, hilisem versioon võib olla saadaval.

Lisainfo FreeBSD kohta: https://www.freebsd.org/
Kanali veebisait: https://markustegelane.ml
Tahate näha kui paljud on pannud sellele videole dislike? Siis paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Peatükid:
0:00 Intro (veider versioon)
0:28 Virtuaalarvuti seadistamine
2:15 FreeBSD seadistamine ja paigaldamine
8:03 Kasutajakonto loomise ebaõnnestumine
8:58 FreeBSD esimest korda käivitamine ja mõningate käskluste katsetamine
10:25 Kuvaserveri, sessioonihalduri ja töölaua paigaldamine
13:46 Lõpuks ometi töölaual
14:55 Puudub võrguühendus
15:18 Veebi sirvimine: YouTube videote esitamine
15:49 Muu värk
16:40 Kokkuvõte
17:07 Lõputiitrid
18:00 Lõpuekraan

Creative Commons muusikapalade viited:

Airport Lounge - Disco Ultralounge ja Chee Zee Lab - Netherworld Shanty esitajalt Kevin MacLeod on litsentsitüübiga Creative Commons Attribution 4.0. https://creativecommons.org/licenses/by/4.0/

Allikad:
Airport Lounge: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100806 (http://incompetech.com/)
Chee Zee Lab: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100683 (http://incompetech.com/)

Täiendavad muusikapalad on mainitud video lõputiitrites ning märgitud YouTube poolt video kirjelduse all.

Aitäh, et vaatasite!
© 2022 Markuse Videod Productions
freebsd.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,eesti keeles,English subtitles,FreeBSD,Berkeley Software Distribution,red ogre,daemon,xfce4,gdm,xorg,shrek is life,red shrek,crash bandicoot,bush https://odysee.com/@MarkusTegelane:8/mce_freebsd:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/427.jpg N/A /channel_db_lite/web/json/427.json N/A /channel_db_lite/web/stream/427.en.ass
425 MarkusTegelane KolibriOS (2. osa) [Markuse arvuti meelelahutus] 0 2022-04-09 See video jätkab ja võtab kokku KolibriOS ülevaate. Selles osas vaatame kõiki operatsioonsüsteemi sisseehitatud mänge (neid on üsna palju) ning samuti ka mõningaid demosid. 1 1 0 1 https://www.youtube.com/watch?v=t3NQs447WCc 0 KolibriOS (Part II) [Markus computer entertainment] (ENG subtitles) . This video continues and concludes the KolibriOS review. This is where we take a look at all of the games, that are built into this operating system (there are quite a few) as well as some demos.

More about KolibriOS: http://kolibrios.org/en/
My website: https://markustegelane.ml
Want to see how many dislikes my videos have? Install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Chapters:
0:00 Intro
0:36 Game of Life
0:50 TinyBasic
0:58 Table (spreadsheet)
1:39 Notes
2:02 FTP client
2:08 fNav
2:18 CNC editor
2:21 Calc+
2:45 Dicty
2:57 THashView
3:21 RDSave
3:30 FE2READ
3:40 Web browsing
5:54 Developer tools
7:34 Syspanel
8:02 Appearance - themes, wallpapers, and screensavers
11:18 DOCPACK
11:24 More developer tools
11:52 Games!
20:03 Minesweeper crashes the entire system
20:26 More games!
21:20 2D demos
22:19 3D demos
23:48 Another developer tool
24:08 Online Updater, which hangs the entire system
24:20 Conclusion
25:33 Credits

Music:
Jeremy Blake - Absolutely Nothing
Geographer - Airline
Geographer - Synergy
Professor Kliq - Surfs Up
Kevin MacLeod - Local Forecast - Elevator
Vibe Tracks - Faith
Vibe Tracks - Crystal
Vibe Tracks - Nice To You
Vibe Tracks - Staccato
Vibe Tracks - Dutty
Vibe Tracks - Undeniable
Nokia - Backwoods

© 2022 Markus' videos productions
See video jätkab ja võtab kokku KolibriOS ülevaate. Selles osas vaatame kõiki operatsioonsüsteemi sisseehitatud mänge (neid on üsna palju) ning samuti ka mõningaid demosid.

Lisainfo KolibriOS kohta: http://kolibrios.org/en/
Kanali veebisait: https://markustegelane.ml
Tahate näha kui palju on mu videotel dislike? Siis paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Peatükid:
0:00 Intro
0:36 Game of Life
0:50 TinyBasic
0:58 Table (arvutustabelite loomise programm)
1:39 Notes (märkmik)
2:02 FTP klient
2:08 fNav
2:18 CNC editor
2:21 Calc+
2:45 Dicty
2:57 THashView
3:21 RDSave
3:30 FE2READ
3:40 Veebi sirvimine
5:54 Arendaja tööriistad
7:34 Syspanel (süsteemi paneel)
8:02 Välimus - teemad, taustapildid ja ekraanisäästjad
11:18 DOCPACK
11:24 Veel arendaja tööriistu
11:52 Mängud!
20:03 Mäng "Minesweeper" krahhib terve süsteemi
20:26 Veel mänge!
21:20 2D demod
22:19 3D demod
23:48 Veel üks arendaja tööriist
24:08 Internetipõhine uuendaja, mille tõttu kogu süsteem hangub
24:20 Kokkuvõte
25:33 Lõputiitrid

Muusika:
Jeremy Blake - Absolutely Nothing
Geographer - Airline
Geographer - Synergy
Professor Kliq - Surfs Up
Kevin MacLeod - Local Forecast - Elevator
Vibe Tracks - Faith
Vibe Tracks - Crystal
Vibe Tracks - Nice To You
Vibe Tracks - Staccato
Vibe Tracks - Dutty
Vibe Tracks - Undeniable
Nokia - Backwoods

© 2022 Markuse videod productions
kolbri2_2.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,eesti keeles,English subtitles,KolibriOS,Minesweeper,Battleships,Samsung,IBochs PC Emulator,MarkuStation 2 https://odysee.com/@MarkusTegelane:8/kolibrios-(part-ii)-markus-computer:a MarkusTegelane . 1 /channel_db_lite/web/thumbs/425.jpg N/A /channel_db_lite/web/json/425.json N/A N/A
417 MarkusTegelane+ markustegelane - intro kandidaat 1 // markustegelane - intro candidate 1 1 2022-03-17 See on võimalik uus intro kanalile markustegelane. Juhul kui teile ei meeldi see intro, palun vajutage dislike, et ma ei kasutaks seda enda tulevastes videotes. Kui aga meeldis, vajutage like. Igal juhul võite kommenteerida miks ning täpsustada mis teile meeldib ja ei meeldi selle intro puhul (ning mida ma saaksin paremini teha). 0 1 0 1 https://www.youtube.com/watch?v=6b2OPJcIUvo 0 . . See on võimalik uus intro kanalile markustegelane. Juhul kui teile ei meeldi see intro, palun vajutage dislike, et ma ei kasutaks seda enda tulevastes videotes. Kui aga meeldis, vajutage like. Igal juhul võite kommenteerida miks ning täpsustada mis teile meeldib ja ei meeldi selle intro puhul (ning mida ma saaksin paremini teha).
//
This is a possible new intro for the markustegelane channel. If you didn't like this intro, please hit the dislike button, so that I wouldn't use it on my future videos. If you did like it, press the like button. In any case, you are free to comment and tell me why you liked/disliked this and specify what you like and dislike about this intro (and what I could improve upon).
See on võimalik uus intro kanalile markustegelane. Juhul kui teile ei meeldi see intro, palun vajutage dislike, et ma ei kasutaks seda enda tulevastes videotes. Kui aga meeldis, vajutage like. Igal juhul võite kommenteerida miks ning täpsustada mis teile meeldib ja ei meeldi selle intro puhul (ning mida ma saaksin paremini teha).
//
This is a possible new intro for the markustegelane channel. If you didn't like this intro, please hit the dislike button, so that I wouldn't use it on my future videos. If you did like it, press the like button. In any case, you are free to comment and tell me why you liked/disliked this and specify what you like and dislike about this intro (and what I could improve upon).
mt_intro2.mp4 Introd Intros N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/417.jpg N/A /channel_db_lite/web/json/417.json N/A N/A
416 MarkusTegelane Markuse arvuti meelelahutus - KolibriOS (I osa) 0 2022-03-12 See Markuse arvuti meelelahutuse episoodis heidame pilgu operatsioonsüsteemile, mis kirjutati täielikult x86 assembleris. See ei ole Windows, see ei ole Mac, see ei ole Linux, see midagi totaalselt erinevat! 1 1 0 1 https://www.youtube.com/watch?v=RUuxmLRTzRc 0 Kolibri OS (Part I) [Markus Computer Entertainment] (ENG subtitles) KolibriOS (I osa) [Markuse arvuti meelelahutus] This episode of Markus Computer Entertainment episode is going to take a look at an operating system made entirely in x86 assembly. It's not Windows, it's not Mac, it's not Linux, it's something completely different!

More about KolibriOS: http://kolibrios.org/en/
My website: https://markustegelane.ml
Want to see how many dislikes my videos have? Install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Music:
Professor Kliq - Surfs Up
Romeo Knight - Cream of Earth (CoLD SToRAGE Remix)
Jester - Stardust Memories (D4XX REMIX)
Quazar - Funky Stars (Hex 2014 Remix)

© 2022 Markus' videos productions
See Markuse arvuti meelelahutuse episoodis heidame pilgu operatsioonsüsteemile, mis kirjutati täielikult x86 assembleris. See ei ole Windows, see ei ole Mac, see ei ole Linux, see midagi totaalselt erinevat!

Lisainfo KolibriOS kohta: http://kolibrios.org/en/
Minu veebisait: https://markustegelane.ml
Kas soovite teada kui palju mu videotel dislaike on? Siis paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Muusika:
Professor Kliq - Surfs Up
Romeo Knight - Cream of Earth (CoLD SToRAGE Remix)
Jester - Stardust Memories (D4XX REMIX)
Quazar - Funky Stars (Hex 2014 Remix)
kolbri2.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,eesti keeles,English subtitles,KolibriOS,Filler Green,letter B,IBochs PC Emulator,Android 11,Samsung,Sam has never sung,MarkuStation 2,computer guy,sanic,nice,mouse https://odysee.com/@MarkusTegelane:8/english-cc-markus-computer-entertainment:1 MarkusTegelane . 1 /channel_db_lite/web/thumbs/416.jpg N/A /channel_db_lite/web/json/416.json N/A N/A
410 MarkusTegelane++ [devUpdate 1] Movement Pie 0 2022-02-19 See video näitab Movement Pie-d, mis on Pythoni mäng, mille idee põhineb Movement Batch mängul. 1 1 0 1 https://www.youtube.com/watch?v=wH83EieQVaM 0 . . The devUpdate series showcases new features in development for the next version of the software. This video showcases Movement Pie, a Python game based on the idea of Movement Batch.

GitHub repository: https://github.com/MarkusMaal/Movement_Pie
. movement_pie_du1.mp4 devUpdate devUpdate Movement Batch,batch game,python game,pygame,Python3,programming language,game,editor,map editor,backwards compatibility,conversion technology https://odysee.com/@hashMarkusTegelane:3/movement_pie_du1:2 MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/410.jpg /channel_db_lite/web/stream/410.mp4 /channel_db_lite/web/json/410.json N/A N/A
407 MarkusTegelane++ [devUpdate 1] Blue Screen Simulator Plus 2.1 - Vista/7 separation, Prank mode, Windows 11 0 2022-02-03 The first devUpdate video for Blue Screen Simulator Plus 2.1. The devUpdate series showcases new features in development for the next version of the software. 1 1 0 1 https://www.youtube.com/watch?v=XG6mGJGkBBo 0 . [devUpdate 1] Sinise ekraani simulaator pluss 2.1 - Vista/7 eraldamine, vemburežiim, Windows 11 The first devUpdate video for Blue Screen Simulator Plus 2.1. The devUpdate series showcases new features in development for the next version of the software.

Beta source code: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/tree/experimental
My Github: https://github.com/MarkusMaal
My website: https://markustegelane.ml
Main channel: https://www.youtube.com/markustegelane
Esimene devUpdate video sinise ekraani simulaator pluss 2.1 jaoks. See devUpdate seeria näitab uusi funktsioone, mis on arendamisel tarkvara järgmise versiooni jaoks.

Beeta lähtekood: https://github.com/MarkusMaal/BlueScreenSimulatorPlus/tree/experimental
GitHub: https://github.com/MarkusMaal
Veebisait: https://markustegelane.ml
Põhikanal: https://www.youtube.com/markustegelane
bssp21_du1.mp4 devUpdate devUpdate #markusTegelane,markustegelane,mmaal,mmaal (markustegelane),Blue Screen Simulator Plus,Blue Screen Simulator,bugcheck,Microsoft Windows,kernel bugcheck,simulation technology https://odysee.com/@hashMarkusTegelane:3/bssp21_du1:6 MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/407.jpg /channel_db_lite/web/stream/407.mp4 /channel_db_lite/web/json/407.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
403 MarkusTegelane Markuse arvuti meelelahutus - Enso OS (GNU/Linux) 0 2022-01-21 Selles videos ma uurin Ubuntu põhjaga Linuxi distrot - Enso OS-i. See distro valiti juhuslikult kasutades DistroWatch veebilehel olevat juhuslikustamise nuppu. 1 1 0 1 https://www.youtube.com/watch?v=gZzcWNrw_Y0 0 Enso OS (GNU/Linux) [Markus computer entertainment] (ENG subtitles) Enso OS (GNU/Linux) [Markuse arvuti meelelahutus] In this video, I'll be exploring a Ubuntu based Linux distribution - Enso OS. This distro was chosen by clicking the random button on DistroWatch.

More about Enso OS: https://www.enso-os.site/
My website: https://markustegelane.ml
Want to see how many dislikes my videos have? Install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Music:
Vibe Tracks - Foundation
Kevin MacLeod - Exit The Premises
Vibe Tracks - Beat Your Competition
Professor Kliq - Surfs Up
Vibe Tracks - Dutty
Selles videos ma uurin Ubuntu põhjaga Linuxi distrot - Enso OS-i. See distro valiti juhuslikult kasutades DistroWatch veebilehel olevat juhuslikustamise nuppu.

Veel infot Enso OS-i kohta: https://www.enso-os.site/
Minu veebisait: https://markustegelane.ml
Tahate näha kui palju dislike on mu videotel? Paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Muusika:
Vibe Tracks - Foundation
Kevin MacLeod - Exit The Premises
Vibe Tracks - Beat Your Competition
Professor Kliq - Surfs Up
Vibe Tracks - Dutty
gobokolibri.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,Linux,GNU/Linux,Ubuntu,Debian,xfce,desktop environment,Enso OS,believe in greener computing,tux,neofetch,sakura,HP Stream,Helwett Packard,blue,sinine,eesti keeles,English subtitles https://odysee.com/@MarkusTegelane:8/english-cc-markus'-computer:b MarkusTegelane . 1 /channel_db_lite/web/thumbs/403.jpg N/A /channel_db_lite/web/json/403.json N/A N/A
397 Press any key to continue... Unknown music on my hard drive 0 2021-10-29 This is a compilation of music that I have on my hard drive that I haven't been able to find much info about (because I don't know the song names). I uploaded this for both your enjoyment and in hopes that Content ID might pick something up... 0 1 0 1 https://www.youtube.com/watch?v=F2WdXYgvtvk 0 . . This is a compilation of music that I have on my hard drive that I haven't been able to find much info about (because I don't know the song names). I uploaded this for both your enjoyment and in hopes that Content ID might pick something up...

0:00 #1
0:30 #2
2:45 #3
3:35 #4
3:50 #5
4:50 #6
5:05 #7
5:25 #8
5:56 #9
6:43 #10
7:02 #11
7:21 #12
7:36 #13
8:57 #14
10:55 #15
12:29 #16
12:42 #17
12:58 #18
13:07 #19
13:17 #20
13:32 #21
13:52 #22
14:04 #23
14:24 #24
15:09 #25
15:54 #26
17:07 #27
17:20 #28
18:20 #29
20:30 #30
. unknown_songs.webm Muusika Music N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/397.jpg N/A /channel_db_lite/web/json/397.json N/A N/A
392 Press any key to continue... [4K60] PowerPoint - "Exciting" transitions 0 2021-09-20 All of the transitions in Microsoft PowerPoint marked as "exciting". These transitions shouldn't be overused, but they also help create excitement during the presentation.



Created in Microsoft PowerPoint 365 using the "Export as video" option.
0 1 0 1 https://www.youtube.com/watch?v=A8_Snfhu80U 0 . . All of the transitions in Microsoft PowerPoint marked as "exciting". These transitions shouldn't be overused, but they also help create excitement during the presentation.

Created in Microsoft PowerPoint 365 using the "Export as video" option.
. ppt_trans.mp4 PowerPoint PowerPoint N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/392.jpg N/A /channel_db_lite/web/json/392.json N/A N/A
378 MarkusTegelane+ [Markuse arvuti meelelahutus] Androidi hävitamine (avaldamata video) 1 2021-04-30 Selles videos üritasin hävitada Android operatsioonsüsteemi, paigaldades erinevaid viiruseid. See pidi olema Markuse arvuti meelelahutuse (videote seeria) esimese hooaja viimane osa, kuid mul tekkisid erinevad lindistamisprobleemid ning lõpuks ma Androidi ei hävitanudki, mistõttu ma ei avaldanud ega monteerinud seda videot. 0 1 0 1 https://www.youtube.com/watch?v=BY3b1A2l7iM 0 . . . . nononononono.MP4 Lisavideod Additional content Markuse arvuti meelelahutus,Markus computer entertainment,Android,operating systems,operatsioonsüsteemid,computers,apps,destruction N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/378.jpg N/A /channel_db_lite/web/json/378.json 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
303 MarkusTegelane+ l̸͚͛͝ɐ̶͎̆͜ɐ̸́͐͜Ẉ̸̯͐̈ ̵̪̼̔s̴̻̆̓n̷̞̟̄̑ʞ̷̹̖̿ɹ̸͓͕̽̒ɐ̴̥̍Ẅ̶́̅ͅ 1 2020-06-30 l̴̜̘͔̓̌̍̍̂̈́̈́̎̾̽͌̋̃̒̕͠͝ą̵̨̼̼̪̦̙̻̺̫͓̼̪̯͔̪͙͈͓͈̝̈́̊́͋̀͋̓̐͌͂͋̆͋̈́̇́͑͐͂̍ͅa̴̡͔͖̳͚͕͚̞̠͓͙̹̰̖̯͖̟̭̮̱̲̬̍̅̈́̽̃̈́͌̾̇̓̿̓̈́̌͒̽͝M̵̛̼̯̤̺̳̰̗͗̐͋̿͂̆̓̄̄̐̀̍̒͒̿̄͐̈́̓̂̑̽͋͊͆̈͘͘ ̶̧̡̢̛̯̖͖̦͈̻̞̳̼͓͕̗̼̫͔̱͙̼̫̣̾͆̎̏̐̎̑̔̅̈́͆͗̀s̶̡̲̤̯͓͙̟̲̙̞͖̹͕̫̙̭͖̑̃͑́̎̓̐͆̀͝ͅű̵̧͖̜̥̭̱̥̫͂̽͋̀̋̋͗̀̑̉̇͠k̸̨̛̤̻̺̣̗̫͍̙̗͕̦͙̩̼̥̺͓̱̯̬̼̯͖͌̿̊̌͑́̈̍̃̈́̇͑̒́̆͌̔̕͜ͅr̷̛͕̬͎̞͍̓̌̽̑̔̅̍̎̈̽͆͊̓̿̂̉͗͘͠͠ä̵̢̡̢̨̡̠̦͈̬̠̺̪̹͇̭̪̱̩͓͉̥͖͓́͛̐̿̓̆̈́̏̿̀͘̕̚͜͜ͅͅM̶̢̨͓̤̬̻͎̳̙͈̱̰̳̘͎̼͖̭͈̫̦̻̞̯̮̥̆͑̽͂̑͗̈́̍͋̈́͑̄̏̈́̄̒͊͌̓̂̍̂̉͐̕͘͘͜͝͠ ̷̨̡̡̢̻̼̮̹̜̤̺̖̞̪̻̦̘̜̫̳̄̀̍̃͋̉̃̈́͂͐̏̐̒̿̒͒͊̍̂̑͊̆͒̃̕͠͝ͅj̷̡͙̟̭̱͕̙̳̜̼̹̫͖̤͉̙͉̞́͂͠ų̴̡̳̟̬̜͙͕̘̦̰̬̬̦̳̲̜̭͈̝͚͂̌̈́͜͝ͅţ̸̡̭͔̩̙̹̻͚̻͖̭͔̟̳̻̪̘̣̟͙̲̺̺̬͈͊̅̈̐̅̅̎̓̊̍̂̉̄̾̄̉͋ų̸̨̨̨̜͕̹̲̥̰̳̺̠͕̮̊́̾̌̀̂̀͂̌̇̽̏̐̌̚͠s̵̛͚͎̘̦̮̈̓͛͐̐͛͆͊͑͂̃̈́̎͌͛̐̽̈́́͆̕t̸̻́ä̶̢̡̱̰̙̥͍̮̮̹̯̦̼̯̮̩̟̹̘͚̲̭̀̏̈́́͂͂̕b̷̢̧̛̩̪̬̠͙̝͕̖͉̼̟̟̜̦̻̜̦̜̬̅̂̑͗̃̂̇ͅ,̸̢̞̬͓̩̬̤̮͇̱͎̜̹͈̪͙̝̭̻̍͋̌̈͌̀̋͐͘͘̚͠ ̵̧̭̦̙̞͈̳̺͇̻̗͈̙̬͉̠̦̦̯̱͉̫̱̋̄̇͛̇̔̈́̍̎͛̊̈́́̅̌̎̊̅̚͘͝ͅp̸͉͚̝̎̓̆̐͐̀̇̾͑̀e̴̺̗̙̪̣̜̙̗̳̙͆̓̎̿͂́͊́̐̊͐͘͘͜͠͠͠ṙ̵̢̛͕̤̠̺̗̬̣̰͖͙͎̜͎̜̟̘̯͇̻̹̼̘͐̎̈́̐̑̆͗͆͗̊̅̈́̓͌̄̓͐͛̈̈̀e̵̘͓̩̯̳͕̩̟͐̀̏̈́͠͝ķ̷̨̹̩͍̅͊̄̾̒̆̿̍̔̽̉̋̓̈́͊̈́̂̆̈́̽̚͝͝ǫ̵̡̡̛̦͙̙̠̗̩͇͖̜̖̞͎̻̤̞͂̃̂̓̈́͛̈́͛̀̑̅̾̓͒̏̀̋͐́̕ͅͅn̷̡̢̧͉̟͓̭͉̰̣̞̣̠͓̮̥͈̫̰̯̰͑́͛̒n̴̰̭̤̥͔͖͍̝̤͉͉̪̜̘̜̖͈̟̺͉͇͖̘̖̭̗̥͗̇̉̋̈́͌̓͐̍͌̌͆̈̊̅̃̈́͝͠ͅạ̴̟̣̤͍͚̫̎́͂͆̈́̓̆̐͘͝n̸̤̤͓̹͇̈̏́̀͆̇͂̂̋̿̋̏̃̌̄̄̽̀̀̀̎̚̚͠͝͝i̶̧̡̤̼̲͕͖̟͓̪̰̞̬̘͙̯̩̞͓̥̪̾̅̿̌͆̂̀̿͛̄̽̓̏̈͊́̀̏̒̏̾m̶̡̧̙̹̥̳͍͈̫̮̃̄̿̓͆̀͋̅̊͊͝͠ę̴̨̰̮̬̯̤̲͉͚̥̈́̀̐̍͘͠͝ͅͅṡ̸̨̢̠̭̤̯͖̜͚̜͇̪̫̤͙̭̼̍̾̈̋̑̿̓͆̍̄̽͜͜t̶̡̙̜̙̭̟̓͒̈́̾́̓̏̈́̊̈́͂̂̊̿̇͊͒̄̐͑̄̕̚͘͠͝͝͝ ̸̨̛̛̛̥͕̠̺̲̱̘̤̻̭̟̫͓̗͚̦̉͑̓͆̀͐͂̂̃̓͆̓̉́̈͌̑̉͒́̓́͝m̶̡̧̧̢̛̞͉̩̣̫̯͕̠̰̝̬̬̰̦̠̗͕̀̈́́̅̂̂̽̔̀̊̅̆̈́͐̉͋̀̽̇͑̾̕͘͘͜ͅą̵̨̛̰̙̘͈̰͕͈̤͖̑̔́́͒̃̅́͘͝à̴̧̛̰̤̳̰̞̲̞̥̟͕̜̦̞̝̰͎̟̮́͐̉̕͘ļ̶̞͈͚̘͈̫̰͈͓̖̙͍̆͑̒̆̓́͐̀̔̆̃̽̏̽̀̔͌̃̍͘͘͝͠ 0 1 0 0 https://www.youtube.com/watch?v=OuG1Fbw1fKU 0 . . . . maa.wmv Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/303.jpg N/A /channel_db_lite/web/json/303.json N/A N/A
312 Press any key to continue... Flipnic: In-game help 0 2020-06-15 These are help videos you can find in Flipnic (PS2), when you go to the Help menu. These explain basic mechnics of the game, as well as some more advanced techniques. I like these more than the actual manual included in the case, because of the nice visuals and more detailed explanations. 0 1 0 0 https://www.youtube.com/watch?v=374kqzSBuOA 0 . . These are help videos you can find in Flipnic (PS2), when you go to the Help menu. These videos are from the PAL version, but the NTSC-U has identical videos. The NTSC-J has similar videos, but they are in Japanese (obviously) and are actually placed in the Explain menu.

These videos explain basic mechnics of the game, as well as some more advanced techniques. I like these more than the actual manual included in the case, because of the nice visuals and more detailed explanations.

This video was originally uploaded a few months ago, but due to the fact I didn't verify my account using my phone, I wasn't able to upload it (longer than 15 minutes). And yes, I published 5 videos in a single day (altough 3 of them were unlisted already and uploaded a few months ago).

Timestamps:
0:00 Basic rules
3:20 Missions
7:14 Recovery 1
11:19 Recovery 2
14:02 Multiball
19:14 Defence & offence
22:46 Holding
. flipnic_help.wmv FMV klipid FMV clips Flipnic,pinball,simulator,physics,dynamics,advanced techniques,video game,in-game help,tictactoe,metallic ball,flipper,bumper,gravity,tilting,nudging,algebra,PlayStation,gaming,PS2,Sony Computer Entertainment Europe,coins,arcade,game tutorial,game console,video game console,outhole,bluecoins,red,yellow,mission https://odysee.com/@Press_any_key_to_continue:2/FlipnicHelp:e Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/312.jpg N/A /channel_db_lite/web/json/312.json N/A N/A
277 MarkusTegelane [Pakkfaili mäng] Movement Batch 3.0 (Allalaadimise link) 0 2020-03-06 See on Movement Batch 3.0, viimane suur uuendus Movement Batch'ile (väiksemad uuendused on veel tulemas, see on suur uuendus) 1 1 0 1 https://www.youtube.com/watch?v=3Sktoj_p0z0 0 [Batch game] Movement Batch 3.0 (Download link) . This is Movement Batch 3.0, the final major update to arrive for Movement Batch (smaller updates will come, this is the final big one)
---------------------------------------------Click read more---------------------------------------------


► Download links
Final version is now available for download!
Direct download: http://markustegelane.ml/app/movement_batch_3_0_spectrum.zip
Mirror download: https://drive.google.com/open?id=1c2StxyWkHgy20FFFEYvACEn1Z9EvpiuD
Please report broken links!

Checksum:
MD5: E7E08B1B23F0BB956DCB143A94AF0E92
SHA-1: D060635DD032CD92ECAA7092696B0C888F3940F5
CRC32: 08257577


► What's new? (get ready for a long list)
Key: + New feature, - Removed feature, * Improvement/fix, ? Mistery
+ Game tutorial when first launching the game
+ Playfields are now bigger - 40x10 instead of 20x5
+ Color support - Maps can now support color
+ Gravitational maps - Maps can now have gravitational properties
+ Pushable objects - You can now push blocks around in maps
+ Headless mode - New gamemode
+ Map converter - To play older maps
+ New editor - Supports all new features
+ New character select screen
+ Colored characters and bullets
+ Sliders in some menu options
+ New screen when finishing a map pack
+ Random map option
+ Random map generator [TOOL]
+ New map menu (with colors)
+ Troubleshooting menu for Windows 10 users
+ Colortool from Microsoft to restore old CMD colors (specifically for Windows 10 users)
+ Emergency Recovery System - helps recover lost data
+ Better scripting interface in the editor
+ Launch variables in the script menu
+ Detailed documentation for game, editor, map pack editor and troubleshooting
+ Encrypted map passwords (more secure)
* Improved menus - Instead of typing a number and then pressing enter you can now just use the arrow keys to navigate (you can still use the old method tough)
* More splash texts (100 in total)
* Improved editor interface
* Improved map pack editor
* Improved out of the box experience
* %solas% checks - you can't shoot to the next line
* More organized folder structure
* Improved map preview tool
* Minor bug fixes
* Fixed memory leak issue when playing for a long time
- Removed multiplayer menu (not neccesary, integrated into "Start game" menu)
- Removed "Use shooting?" and "Shooting handicap" setup screens (not neccesary, replaced with a slider)
- Removed debug screen (accidentally, will be available in the next dot release)
- Removed god mode (was accidentally left in with version 2.2)
- Removed "Start game in command mode" option from the launcher (not neccesary, replaced with "Exit (command mode)" in the launcher)
- Removed standard maps from the "Start game" menu (not neccesary as you can just browse for the map or load a Standard_maps map pack)
? Local Network multiplayer not included in this version, may be available in the next dot release
? New easter eggs
? A version without colors may be released soon. It is codenamed Delta and is more lightweight.


► Notice
This batch by itself does NOT contain any code that can damage your PC, but please be VERY careful when playing maps created by other players - those MAY contain such code, so PLEASE check all .cmd files BEFORE loading the map in Movement Batch (right click and select edit).


► External links
Website: http://markustegelane.ml
Random video: http://markustegelane.ml/random.html
Channel: https://www.youtube.com/MarkusTegelane


► Stay in touch
Blog: http://markustegelane-en.blogspot.com
Twitter: @MarkusMaal


► Other channels
TheMarkusGuy+ : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg (secondary channel)
Markus' stuff: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Personal channel: https://www.youtube.com/channel/UCirudpTn3Hp1sxbl-78z-dQ


► Music
Go Cart - Kevin MacLeod
Heart Break - Vibe Tracks
Shoulder Closures - Gunnar Olsen
Righteous - Silent Partner
Microchip - Jason Farnham
Invisible - Vibe Tracks


► Copyright
Music used is licensed under the Creative Commons licence (attribution required)


► Thank you for watching! ◄
© 2020 Markuse videod productions
See on Movement Batch 3.0, viimane suur uuendus Movement Batch'ile (väiksemad uuendused on veel tulemas, see on suur uuendus)
---------------------------------------------Vajutage loe edasi---------------------------------------------


► Allalaadimise lingid
Lõppversioon on nüüd allalaaditav!
Allalaadimise link:
https://www.markustegelane.ml/markustegelane/?doc=download&id=2
Alternatiivlink: https://drive.google.com/open?id=1c2StxyWkHgy20FFFEYvACEn1Z9EvpiuD
Palun teavitage katkistest linkidest!

Kontrollsumma:
MD5: E7E08B1B23F0BB956DCB143A94AF0E92
SHA-1: D060635DD032CD92ECAA7092696B0C888F3940F5
CRC32: 08257577


► Mis on uut? (olge valmis pikaks loeteluks)
Võti: + Uus funktsioon, - Eemaldatud funktsioon, * Täiustus/parandus, ? Müsteerium
+ Mänguõpetus mängu esimesel käivitamisel
+ Väljakud on nüüd suuremad - 40x10, ,20x5 asemel
+ Värvitugi
+ Gravitatsiooniga väljakud
+ Tõugatavad objektid - Te saate nüüd objekte väljakutel liigutada!
+ Mängijavaba režiim - Uus mängurežiim
+ Väljakuteisendaja - Selleks, et mängida vanu väljakuid
+ Uus väljakuredigeerija - Toetab kõiki uusi funktsioone
+ Uus tegelase valimise ekraan
+ Värvilised tegelased ja kuulid
+ Pühkijad mõnedes menüüvalikutes
+ Uus ekraan väljakupaki lõpetamisel
+ Juhusliku väljaku valik
+ Juhusliku väljaku generaator [TÖÖRIIST]
+ Uus väljakumenüü (värvidega)
+ Veaotsingu menüü Windows 10 kasutajatele
+ Colortool Microsoft'ilt vanade värvide taastamiseks käsureal (suunatud Windows 10 kasutajatele)
+ Erakorralise Taaste Süsteem - aitab taastada kadunud andmeid
+ Parem skriptiliides väljakuredigeerijas
+ Käivitusmuutujad redigeerijas
+ Üksikasjalik dokumentatsioon mängule, redigeerijale, väljakupakkide redigeerijale ja veaotsinguks
+ Krüptitud väljakuparoolid (turvalisem)
* Täiustatud menüüd - Selle asemel, et kirjutada number ja seejärel enter vajutada, saate nüüd kasutada navigeerimiseks nooleklahve (saate vana meetodit endiselt kasutada)
* Rohkem tervitustekste (100 kokku)
* Täiustatud väljakuredigeerija liides
* Täiustatud väljakupaki redigeerija
* Täiustatud esmakäivituse kogemus
* %solas% kontrollid - järgmisele reale ei saa tulistada
* Organiseeritud failistruktuur
* Täiustatud väljakueelvaate tööriist
* Väiksemad veaparandused
* Parandatud mäluleke, kui liiga kaua mängida
- Eemaldatud mitmikmängimise menüü (pole vajalik, integreeritud "Käivita mäng" menüüsse)
- Eemaldatud "Use shooting?" ja "Shooting handicap" seadistusekraanid (pole vajalikud)
- Eemaldatud silumisekraan (kogemata, saadaval järgmises uuenduses)
- Eemaldatud jumalarežiim (kogemata jäi allas versioonis 2.2)
- Eemaldatud "Start game in command mode" valik käivitajast (pole vajalik, asendatud väljumisvalikuga käivitajas)
- Eemaldatud standardrajad "Käivita mäng" menüüst (pole vajalik, saate kasutada väljaku sirvimise valikut või standardväljakute väljakupakki)
? Kohaliku võrgu mitmikmäng pole selles versioonis saadaval, võib-olla järgmises uuenduses
? Uued üllatused
? Värvideta versioon võib-olla tulemas varsti. Koodnimega Delta, see versioon on kergekaalulisem.


► Tähelepanu
See pakkfail iseenesest EI sisalda koodi, mis võiks teie arvutit kahjustada, kuid palun olge VÄGA ettevaatlikud kui mängite teiste loodud väljakuid - need VÕIVAD sisaldada sellist koodi, seega PALUN kontrollige kõiki .cmd faile ENNE väljaku laadimist Movement Batch'is (paremklikk, "Muuda").


► Välised lingid
Veebileht: http://markustegelane.ml
Juhuslik video: http://markustegelane.ml/random.html
Kanal: https://www.youtube.com/MarkusTegelane


► Ole kursis
Ajaveeb: http://markustegelane.blogspot.com
Twitter: @MarkusMaal


► Teised kanalid
MarkusTegelane+ : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg (secondary channel)
Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Isiklik kanal: https://www.youtube.com/channel/UCirudpTn3Hp1sxbl-78z-dQ


► Muusika
Go Cart - Kevin MacLeod
Heart Break - Vibe Tracks
Shoulder Closures - Gunnar Olsen
Righteous - Silent Partner
Microchip - Jason Farnham
Invisible - Vibe Tracks


► Autoriõigus
Kasutatud muusika on litsenseeritud Creative Commons litsentsi (autorile viitamine) alusel


► Aitäh, et vaatasite ◄
© 2020 Markuse videod productions
mb30_final.MP4 Pakkfailid Batch files Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/277.jpg N/A /channel_db_lite/web/json/277.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
282 MarkusTegelane+ Vaatan juhuslikke iseenda videosid 1 2020-01-19 Kasutades RNG-d, vaatan suvalisi videoid enda põhikanalil. Loodan, et teile meeldib see video. Ma ei monteerinud seda, aga siiski loodan… 0 1 0 1 https://www.youtube.com/watch?v=g3TUfBH_JxE 0 . . . . 2020-01-19 12-34-20.mp4 Kommentaar Commentary N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/282.jpg N/A /channel_db_lite/web/json/282.json N/A N/A
280 MarkusTegelane+ Uue aasta vastuvõtu otseülekande treiler, aga midagi on valesti 1 2020-01-14 pk ütl 0 1 0 1 https://www.youtube.com/watch?v=Tn0ll0MBj_M 0 . . . . nycas.MP4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/280.jpg N/A /channel_db_lite/web/json/280.json N/A N/A
281 MarkusTegelane+ Blue screen simulator plus, but blue is replaced with rainbow colour 1 2020-01-14 N/A 0 1 0 1 https://www.youtube.com/watch?v=MQ9U4sIePwo 0 . . . . rainbow.MP4 Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/281.jpg N/A /channel_db_lite/web/json/281.json 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
360 MarkusTegelane+ [Flashing lights warning] Batch file: Video player for Log OS plays Out-Oh-Mat by Brainstorm 1 2019-10-13 A simple text video player I've implemented in Log OS (a batch file operating environment) plays a textmode demo converted into text using a special conversion process:



0. The video is rendered into a sequence of bitmap images in 150x45 resolution

1. PICTOASCII - converts a batch of images into a batch of ASCII images

2. ASCVID maker - converts raw ascii frame files into a playable text video file

3. ASCAUD file is also made for audio (just a low quality 8kHz wave file)

4. ASCII video player (video_player.bat) - plays back the text video
0 1 0 1 https://www.youtube.com/watch?v=sUNwGZuosds 0 . . A simple text video player I've implemented in Log OS (a batch file operating environment) plays a textmode demo converted into text using a special conversion process:

0. The video is rendered into a sequence of bitmap images in 150x45 resolution
1. PICTOASCII - converts a batch of images into a batch of ASCII images
2. ASCVID maker - converts raw ascii frame files into a playable text video file
3. ASCAUD file is also made for audio (just a low quality 8kHz wave file)
4. ASCII video player (video_player.bat) - plays back the text video

Original video before conversion: https://www.youtube.com/watch?v=LnQtJFGJmj4

An old video showing off an old version of Log OS (not the most advanced batch file os by the way): https://www.youtube.com/watch?v=JUvTQ8L9a7k

This batch file currently allows you to:
play back video files (black and white only), manually adjust framerate (if not specified by the file), enable or disable the audio

I also demonstrate the bitmap image viewer I've also implemented (using INSERTBMP.exe plugin).
. 2019-10-13 21-22-52.mp4 Pakkfailid Batch files Log OS,batch files,programming,demos,batch demos,brainstorm,out oh mat,out-oh-mat,MarkusTegelane,Log Operating System,batch file OS,batch os N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/360.jpg N/A /channel_db_lite/web/json/360.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
337 MarkusTegelane TrackMania - Külmunud rajad (MarkuStation 2) 0 2019-09-08 See video näitab erinevaid "külmunud" radasid, mida olen loonud TrackManias. 1 1 0 1 https://www.youtube.com/watch?v=iNyOFBmhckg 0 TrackMania - Frozen tracks (MarkuStation 2) . This video shows different "frozen" tracks, that I have made in TrackMania.

Web page: http://markustegelane.tk
Random video: http://markustegelane.tk/random.html
See video näitab erinevaid "külmunud" radasid, mida olen loonud TrackManias.

Veebileht: http://
Juhuslik video: http:///random.html
tmsnow.avi MarkuStation 2 MarkuStation 2 Markus Maal,MarkusTegelane,TheMarkusGuy,TrackMania,United,Forever,Original,ESWC,Nations,MarkuStation,MarkuStation2,MarkuStation 2,Markuse arvuti meelelahutus,mängud,gaming,Markus computer entertainment https://odysee.com/@MarkusTegelane:8/trackmania-k-lmunud-rajad-markustation-2:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/337.jpg N/A /channel_db_lite/web/json/337.json N/A /channel_db_lite/web/stream/337.en.srt
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
263 MarkusTegelane Veidrad PlayStation 2 BIOS/brauseri rikutused (Emulaator: PCSX2) 0 2019-06-19 Ma jamasin siis PlayStation 2 BIOS failidega Vinesauce ROM Corruptor'is ja sain huvitavaid ja veidraid tulemusi. Vaadake videot, et näha, mida ma mõtlen. 1 1 0 1 https://www.youtube.com/watch?v=5ZLEjfJtqd0 0 Weird PlayStation 2 BIOS/browser corruptions (Emulator: PCSX2, PAL BIOS) . So I was messing with the BIOS files for PS2 using Vinesauce ROM Corruptor and ended up with some interesting and weird results. Watch the video to see what I mean.

I don't provide download links to these BIOS corruptions for legal reasons.

-----------------------------------------------------------
Links
-----------------------------------------------------------
Website: http://markustegelane.ml
YouTube: https://www.youtube.com/MarkusTegelane
Random video: http://markustegelane.ml/random.html
Ma jamasin siis PlayStation 2 BIOS failidega Vinesauce ROM Corruptor'is ja sain huvitavaid ja veidraid tulemusi. Vaadake videot, et näha, mida ma mõtlen.

Ma ei paku allalaadimise linke nendele rikutustele legaalsetel põhjustel.

-----------------------------------------------------------
Lingid
-----------------------------------------------------------
Veebisait: http://markustegelane.ml
YouTube: https://www.youtube.com/MarkusTegelane
ps2corruptions.MP4 Rikutused Corruptions Markus Maal,MarkusTegelane,TheMarkusGuy,PCSX2 emulator,PlayStation 2,Sony Computer Entertainment,Sony Inc,corruption,rikutus,korruptsioon,lammas,all stars,nightmares,Vinesauce ROM Corrupt https://odysee.com/@MarkusTegelane:8/weird-playstation-2-bios-browser:8 MarkusTegelane . 1 /channel_db_lite/web/thumbs/263.jpg N/A /channel_db_lite/web/json/263.json N/A N/A
169 MarkusTegelane Markuse arvuti meelelahutus: Saifish OS ülevaade (1. osa) 0 2018-05-14 Mis asi on üldse Sailfish OS? Selles videos vaatame huvitavat Linuxil põhinevat mobiilopsüsteemi. Kui teist osa ei tule, siis ma Play Poodi tööle ei saanud. 1 1 0 1 https://www.youtube.com/watch?v=xtsEQSOcSZY 0 Sailfish OS (review) [Markus computer entertainment] Sailfish OS (ülevaade) [Markuse arvuti meelelahutus] What actually is Sailfish OS? In this video, we are taking a look at an interesting Linux based mobile OS. If second part doesn't come out, then it means that I didn't get Google Play Store working.

MAKE SURE TO VISIT MY BLOG: http://themarkusguy.tk

Other channels

TheMarkusGuy+
Markus's stuff
Press any key to continue...


Social

Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Music used

All attributions can be found in the credits.

Additional information

RAW filename: sfos.mp4
Software used: kdenlive
Rendering time: 0-2 hours
Mis asi on üldse Sailfish OS? Selles videos vaatame huvitavat Linuxil põhinevat mobiiliopsüsteemi. Kui teist osa ei tule, siis ma Play Poodi tööle ei saanud.

KÜLASTA KINDLASTI MU AJAVEEBI: http://www.

#MarkuseArvutiMeelelahutus #Sailfish OS

Teised kanalid

MarkusTegelane+
Markuse asjad
Press any key to continue...


Sotsiaalvõrgustikud:

Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal


Kasutatud teosed

Kasutatud heliteosed on litsenseeritud Creative Commons (autorile viitamine) litsentsi alusel.

Kõik viited on saadaval video lõputiitrites.


Lisainfo

Video RAW nimi: sfos.mp4
Kasutatud tarkvara: kdenlive
Renderdamise aeg: ~2 tundi
sfos.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markus Maal,MarkusTegelane,TheMarkusGuy,Markuse arvuti meelelahutus,Markus computer entertainment,Sailfish OS,mobile operating system,Operating System,Mobile OS,Jolla,Jolla Store not working https://odysee.com/@MarkusTegelane:8/markuse-arvuti-meelelahutus-sailfish-os:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/169.jpg N/A /channel_db_lite/web/json/169.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
163 MarkusTegelane TrackMania rada: Labürint 0 2017-12-10 Eksperimenteerisin TrackMania Unlimiteriga. Tegin selle raja. 1 1 0 1 https://www.youtube.com/watch?v=P1mk1Sm3guU 0 TrackMania track: Labyrinth (MarkuStation) TrackMania rada: Labürint (MarkuStation) I was just experimenting with TrackMania Unlimiter. I made this track.


Stay up to date:

Blog: http://themarkusguy.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Other channels

TheMarkusGuy+ : https://www.youtube.com/channel/UCGGM...
TheMarkusGuy++ : https://www.youtube.com/channel/UC_ah...
Markus's stuff: https://www.youtube.com/channel/UCMD2...


Additional information

RAW filename: labyrinth.mp4
Software used: TrackMania United Forever
Rendering time: 20 minutes, 2 hours for replay rendering
Eksperimenteerisin TrackMania Unlimiteriga. Tegin selle raja.


Ole kursis


Ajaveeb: http://
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Teised kanalid

MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...


Lisainfo

Video RAW nimi: labyrinth.mp4
Kasutatud tarkvara: TrackMania United Forever
Renderdamise aeg: 20 minutit, 2 tundi korduse salvestamiseks
labyrinth.mp4 MarkuStation 2 MarkuStation 2 Markus Maal,MarkusTegelane,TheMarkusGuy,TrackMania,TrackMania United,Forever,TrackMania Unlimiter https://odysee.com/@MarkusTegelane:8/trackmania-rada-lab-rint-markustation:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/163.jpg N/A /channel_db_lite/web/json/163.json N/A N/A
161 MarkusTegelane Android Oreo ülevaade ja Firefoxi röst (I osa) [Markuse arvuti meelelahutus] 1 2017-11-20 Google lasi välja uue Android versiooni nimega Oreo. Kas see on parem kui eelmine versioon? Vaadake videot, et teada saada!

#MarkuseArvutiMeelelahutus #Android

Ole kursis

Ajaveeb: http://www.
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Teised kanalid

MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...

Lisainfo

Video RAW nimi: mamo.mp4
Kasutatud tarkvara: Sony Vegas Pro 11, Süsteem Android Oreo 8.0, ROM Nitrogen OS
Renderdamise aeg: NA, jätsin ööseks tegema
1 1 0 1 https://www.youtube.com/watch?v=mhDIZfkwfvM 0 Android Oreo overview and Firefox roast (Part I) [Markus computer entertainment] Android Oreo ülevaade ja Firefoxi röst (I osa) [Markuse arvuti meelelahutus] Google released a new Android version named Oreo. Is it better than the last version? Keep watching to find out!

Stay updated

Blog: http://www.themarkusguy.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Other channels

TheMarkusGuy+ : https://www.youtube.com/channel/UCGGM...
TheMarkusGuy++ : https://www.youtube.com/channel/UC_ah...
Markus's stuff: https://www.youtube.com/channel/UCMD2...

Lisainfo
RAW filename: mamo.mp4
Software used: Sony Vegas Pro 11, System Android Oreo 8.0, ROM Nitrogen OS
Rendering time NA, left it rendering over night
Google lasi välja uue Android versiooni nimega Oreo. Kas see on parem kui eelmine versioon? Vaadake videot, et teada saada!

#MarkuseArvutiMeelelahutus #Android

Ole kursis

Ajaveeb: http://www.
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Teised kanalid

MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...

Lisainfo

Video RAW nimi: mamo.mp4
Kasutatud tarkvara: Sony Vegas Pro 11, Süsteem Android Oreo 8.0, ROM Nitrogen OS
Renderdamise aeg: NA, jätsin ööseks tegema
mamo.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markus Maal,MarkusTegelane,TheMarkusGuy,Markuse arvuti meelelahutus,Markus computer entertainment,Android 8.0,Android Oreo,Oreo https://odysee.com/@MarkusTegelane:8/sisaldab-vandumist-markuse-arvuti:9 MarkusTegelane . 1 /channel_db_lite/web/thumbs/161.jpg N/A N/A 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
202 MarkusTegelane+ Kas maal või maal, aga see on parima kvaliteediga üldse 1 2017-10-08 Loodan, et teile meeldib 0 1 0 1 https://www.youtube.com/watch?v=j3emEUYBajw 0 . . . . 1mm2.avi Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/202.jpg N/A /channel_db_lite/web/json/202.json N/A N/A
197 MarkusTegelane+ made by Windows Movie Maker 6.9 1 2017-09-14 rest in piss Windows Movie Maker, you'll never be missed 0 1 0 1 https://www.youtube.com/watch?v=lf1j6fJKMtA 0 . . . . madewith69.wmv Eksperimentaalne Experimental lendav siga,windows,movie,maker,69,sexual reference,6.9,mlg,montage parody,meme,memes,bee N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/197.jpg N/A /channel_db_lite/web/json/197.json N/A N/A
196 MarkusTegelane+ Kommentaar: Markus Maal mängib III - Minecraft 1 2017-08-19 Selles videos kommenteerin enda vana Minecrafti mängimise videot. 0 1 0 1 https://www.youtube.com/watch?v=t9lVcvLvQNY 0 . . . Selles videos kommenteerin enda vana Minecrafti mängimise videot.

Vaata originaali siit: https://www.youtube.com/watch?v=82kFRGwvBRU
Minecrafti letsplay kommentaar.wmv Kommentaar Commentary Minecraft,Markus Maal,MarkusTegelane,kolm,III,Markus mängib,Kommentaar,comment N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/196.jpg N/A /channel_db_lite/web/json/196.json N/A N/A
192 MarkusTegelane+ [Vanad videod uues kuues] Talking Tom läks lolliks 1 2017-07-28 My first video on YouTube with a better quality and more standard aspect ratio. 0 1 0 1 https://www.youtube.com/watch?v=uB6DflN9dHQ 0 [Old videos with new look] Talking Tom is not responding . . Minu esimene video YouTube'is parema kvaliteedi ja standardsema aspektiga. yt-editor.flv Eksperimentaalne Experimental YouTube'i redigeerija,tom,läks,lolliks,loll,minema,Talking Friends,Talking,is not responding,error,program error,repetitive,HD,remaster,HD remaster,Old to new,vanast uus N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/192.jpg N/A /channel_db_lite/web/json/192.json N/A N/A
193 MarkusTegelane+ [Vanad videod uues kuues] Windows XP tootetugi on lõppenud [16:9 aspekt ja full HD] 1 2017-07-28 Windows XP video with a new look! 0 1 0 1 https://www.youtube.com/watch?v=3O0mUsKU2gM 0 [Old videos with new look] Windows XP support has ended [16:9 aspect ratio, full HD quality] . . Windows XP video uues kuues! xp.MP4 Eksperimentaalne Experimental Windows XP,operating system,Microsoft,end of support,tootetugi,support,lõppenud,has ended N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/193.jpg N/A /channel_db_lite/web/json/193.json N/A N/A
188 MarkusTegelane+ Paat TrackManias? 1 2017-07-03 lol yes boat track 0 1 0 1 https://www.youtube.com/watch?v=sMmtZ7WI4HM 0 Boat in TrackMania? . lol yes boat track . Video05.avi Eksperimentaalne Experimental N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/188.jpg N/A /channel_db_lite/web/json/188.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
328 MarkusTegelane [Tutorial] How to use mouse in batch files 0 2017-05-29 In this tutorial I will show you how you can use mouse in batch files. This tutorial also has a way of doing noflicker system in batch (basically the replacement for CLS).



Code used for this batch file can be found here: https://pastebin.com/vpDCMNxN



BG.EXE: http://consolesoft.com/p/bg/bg35.zip
1 1 0 1 https://www.youtube.com/watch?v=tX8sH0kiR70 0 . [Õpetus] Kuidas kasutada hiirt pakkfailides In this tutorial I will show you how you can use mouse in batch files. This tutorial also has a way of doing noflicker system in batch (basically the replacement for CLS).

Code used for this batch file can be found here: https://pastebin.com/vpDCMNxN

BG.EXE: https://www.dostips.com/forum/viewtopic.php?t=4094 (copy and paste the code at the bottom into a bat file and run it to build bg.exe)
Selles õpetuses näitan ma kuidas kasutan hiirt enda pakkfailides. Selles õpetuses on ka vilkumise vaba süsteemi loomise õpetus batch failides (põhimõtteliselt CLS asendus)

Selle pakkfaili koodi leiate siit: https://pastebin.com/vpDCMNxN

BG.EXE: http://consolesoft.com/p/bg/bg35.zip
mt_mouse.avi Pakkfailid Batch files resident evil 4 mouse patch,Batch file,.bat,Tutorial,File format,Computer mouse,Mouse,Batch file tricks,batch file tricks,batch file tricks notepad,cool batch file tricks,How,Make,Howto,batch file game tutorial,batch file programming tutorial,batch file programming tutorial full,batch file programming tutorial in hindi,batch file programming tutorial in tamil,batch file tutorial,batch file tutorial for beginners,batch file tutorial windows,batch file tutorials https://odysee.com/@MarkusTegelane:8/tutorial-how-to-use-mouse-in-batch-files:b MarkusTegelane . 1 /channel_db_lite/web/thumbs/328.jpg N/A /channel_db_lite/web/json/328.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
141 MarkusTegelane Markuse arvuti meelelahutus: Ubuntu Touch Nexus 4-s [II osa] 0 2017-03-07 Selles videos näitan Ubuntu Touch'i enda nutitelefonis (Google/LG Nexus 4). Samuti seletan, mis see on. 1 1 0 1 https://www.youtube.com/watch?v=QaCRw1nPAxU 0 Ubuntu Touch in Nexus 4 (Part II) [Markus computer entertainment] Ubuntu Touch Nexus 4-s (II osa) [Markuse arvuti meelelahutus] In this video I show Ubuntu Touch in my smartphone (Google/LG Nexus 4). I also explain, what it is.
Also watch part one: https://www.youtube.com/watch?v=OxrRPQ9b-tI

I'll make Q&A if I get at least 10 questions asked in total.

I made video two part, because in that way, making subtitles is way easier and its better for a viewer to watch shorter videos.

Blog: http://markustegelane-en.blogspot.com

Video info
RAW-file: karimart.mxf
Rendering time: 1,5 hours
Quality: 1080i
CC: Yes
Selles video näitan Ubuntu Touch'i enda nutitelefonis (Google/LG Nexus 4). Samuti seletan, mis see on.
Vaadake ka esimest osa: https://www.youtube.com/watch?v=OxrRPQ9b-tI

#MarkuseArvutiMeelelahutus #Ubuntu #Linux

Q&A teen siis, kui vähemalt 10 küsimust kokku saan.

Tegin video kaheosaliseks, sest nii on subtiitrite tegemine palju lihtsam ning vaatajal on ka mugavam lühemat videot vaadata.

Ajaveeb: http://markustegelane.blogspot.com

Video info:
RAW-fail: karimart.mxf
Renderdamisaeg: 1,5 tundi
Kvaliteet: 1080i
CC: Jah
karimart.mxf Markuse arvuti meelelahutus Markus computer entertainment markuse,arvuti,meelelahutus,markus,computer,entertainment,MarkusTegelane,TheMarkusGuy,Ubuntu Touch,Nexus 4,Google,Part II,Part 2,Part Two,II osa,2. osa,Teine osa,Markus,Maal,subtiit https://odysee.com/@MarkusTegelane:8/markuse-arvuti-meelelahutus-ubuntu-touch:7 MarkusTegelane . 1 /channel_db_lite/web/thumbs/141.jpg N/A /channel_db_lite/web/json/141.json N/A N/A
350 MarkusTegelane+ MarkuStation 1 - Kõik introd [HD] 1 2017-02-16 Selles videos näidatakse kõiki MarkuStationi ja Markuse arvuti meelelahutuse introsid. Lisaks on veel kasutamata Special ja Creepypasta introd.



Ajaveeb: http://markustegelane.blogspot.com
1 1 0 1 https://www.youtube.com/watch?v=eBRAD7m7lag 0 MarkuStation - All intros [HD] . In this video are all the MarkuStation and Markus Computer Entertainment intros. Additionally, there are Special and Creepypasta intros.

Blog: http://markusmaal-en.blogspot.com
Selles videos näidatakse kõiki MarkuStationi ja Markuse arvuti meelelahutuse introsid. Lisaks on veel kasutamata Special ja Creepypasta introd.

Ajaveeb: http://markustegelane.blogspot.com
markustations.mp4 Lisavideod Additional content MarkusTegelane,Markuse arvuti meelelahutus,MarkuStation,Markus Maal,Introd,Läbi aegade,of all time,Markus Computer Entertainment,Intros,TheMarkusGuy N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/350.jpg N/A /channel_db_lite/web/json/350.json N/A N/A
105 MarkusTegelane Markuse arvuti meelelahutus: Taking care of a lot of things [HP sülearvutiga jamamine 1. osa] 0 2016-10-17 Kõige esimeses Markuse arvuti meelelahutuse osas, taastame tehasesätted HP sülearvutis. Andke teada, kas soovite näha järgmist osa. Ma väga loodan, et meeldis, sest see renderdas mingi 3 tundi. 1 1 0 1 https://www.youtube.com/watch?v=vlUU1UPYkMs 0 Taking care of a lot of things (Messing with HP laptop, Part I) [Markus computer entertainment] Taking care of a lot of things (HP sülearvutiga jamamine, 1. osa) [Markuse arvuti meelelahutus] In very first Markus computer entertainment episode, we will restore factory settings in HP laptop. Let me know if you want to see next part. I hope that you liked it, because it rendered something like 3 hours.

Made in Sony Vegas Pro 11
Music: No such thing
Intro: Markus entertainment (blue version)
Voice: Markus Maal
Laptop: HP G2 255 Notebook PC (Windows 8.1 preinstalled)
Polish translated by Google Translate
I went to sleep at 2 AM (very normal)
I don't advertise anything or anybody
I don't have anything else to say... If you have questions ask them by
commenting.
Kõige esimeses Markuse arvuti meelelahutuse osas, taastame tehasesätted HP sülearvutis. Andke teada, kas soovite näha järgmist osa. Ma väga loodan, et meeldis, sest see renderdas mingi 3 tundi.

#MarkuseArvutiMeelelahutus #HP

Loodud programmiga: Sony Vegas Pro 10
Kasutatud muusika: Seda ei ole ju
Intro: Markuse meelelahutus (sinine versioon)
Rääkis: Markus Maal
Sülearvuti: HP G2 255 Notebook PC (Algselt Win 8.1-ga)
Poola keelt tõlkis: Google Translate
Ma läksin magama kell 2:00 (normaalne)
Ma ei reklaami mitte midagi ega kedagi
Rohkem mul rääkida ei ole... Kui teil on veel küsimusi, küsige kommentaarides.
taking_care_of_a_lot_of thigs.mxf Markuse arvuti meelelahutus Markus computer entertainment packard,Markus Maal,meelelahutus,entertainment,don't,remove,my,subscribers,youtube,or,else,...,I will,report,YouTube,as,Spam,website,And,you,are,not,allowed,to,demonitize,this https://odysee.com/@MarkusTegelane:8/markuse-arvuti-meelelahutus-taking-care:7 MarkusTegelane . 1 /channel_db_lite/web/thumbs/105.jpg N/A /channel_db_lite/web/json/105.json N/A N/A
60 MarkusTegelane Proovi põgeneda [TrackMania Rada] [HD 720p] [Blockmix] 0 2015-11-04 See on TrackMania rada, milles kasutasin eksperimentaalseid tööriistu.



[linkide loend]
1 1 0 1 https://www.youtube.com/watch?v=STf7V4tnz7U 0 Try to escape [TrackMania Track] [HD 720p] [Blockmix] . This is a TrackMania track, where I used experimental tools. [link list] . Proovi+p%u00f5geneda+[TrackMania+Rada]+[HD+720p]+[Blockmix].mp4 MarkuStation 0 Miscellaneous TrackMania,United,Forever,Markus Maal,Ühendama,ühendatud,Markus Maal - Ühendatud https://odysee.com/@MarkusTegelane:8/proovi-p-geneda-trackmania-rada-hd-720p:c MarkusTegelane . 1 /channel_db_lite/web/thumbs/60.jpg N/A /channel_db_lite/web/json/60.json N/A N/A
24 MarkusTegelane Markuse meelelahutus - Kliki seda! 0 2015-03-10 Selles programmis ei saa te klikkida ühte nuppu. Noh, vaadake videot kui olete uudishimulik. 1 1 0 1 https://www.youtube.com/watch?v=ugFM4PzBlNw 0 Markus's entertainment - Click it! . In this program you can't click one button. Well, watch the video if you are interested. . Markuse meelelahutus - Kliki seda!.mp4 Tarkvara Software Meelelahutus,Entertainment (TV Genre),ühendama,ühendatud,Kliki seda!,Microsoft Visual Studio (Software),Visual Basic (Programming Language) https://odysee.com/@MarkusTegelane:8/markuse-meelelahutus-kliki-seda:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/24.jpg N/A /channel_db_lite/web/json/24.json N/A N/A