Leiti 19 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
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 N/A /channel_db_lite/web/json/573.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 N/A /channel_db_lite/web/json/570.json N/A N/A
562 Press any key to continue... Pac-Man Rally (PS2 FMV/BGM Rip) 0 2024-02-02 Background music and intro movie from Pac-Man Rally (PS2). This is the EU name for this game, everywhere else it's known as "Pac-Man World Rally". Everything you hear and see in the video has been directly extracted and converted from game files.

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

Technical info:

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

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

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

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

Technical info:

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

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

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

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

Technical info:

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

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

Background music (samples)
Container .MIB
Format: Compressed Sony ADPCM audio
Interleave, frequency, channels = Based on corresponding header file
pmr.mov Muusika Music N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/562.jpg N/A /channel_db_lite/web/json/562.json N/A N/A
559 MarkusTegelane Identity crisis - What happened with this channel? 0 2024-01-28 You may have noticed that I changed my channel name at some point and then reverted that change less than a month later. This video explains what happened and why I did what I did...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

? Created by: Markus Maal ?
© 2024 Markuse videod
Identiteedikriis_EN.mov Info ja uudised Info and news markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers N/A MarkusTegelane . 0 /channel_db_lite/web/thumbs/559.jpg N/A /channel_db_lite/web/json/559.json N/A N/A
401 MarkusTegelane tl;dw Markuse videod aastal 2021 (7 min) 0 2021-12-31 liiga pikk; ei vaadanud 5. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh markustegelane, markustegelane x ja Press any key to continue... juhul kui te midagi maha magasite :-)

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

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

► Teisi kanaleid
markustegelane x : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg (lisakanal)
Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Isiklik kanal: https://www.youtube.com/channel/UCirudpTn3Hp1sxbl-78z-dQ

► Tänan, et vaatasite! ◄
© 2021 Markuse videod productions
0 0 0 1 https://www.youtube.com/watch?v=J5eoDhxnokg 0 tl;dw Markus' videos in 2021 (7 min) tl;dw Markuse videod aastal 2021 (7 min) too long; didn't watch part 5! This time I'll really briefly show what happened this year on my channels, including mmaal (markustegelane), mmaal x (markustegelane x) and Press any key to continue... in case you missed something :-)

► External links
Website: http://markustegelane.ml
Random video: https://markustegelane.ml/markustegelane/random/?c=mt
Channel: https://www.youtube.com/MarkusTegelane

► Stay up to date
Blog: http://markustegelane-en.blogspot.com
Twitter: @markustegelane

► Other channels
mmaal x (markustegelane x) : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg (extra channel)
Markus' stuff: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Personal channel: https://www.youtube.com/channel/UCirudpTn3Hp1sxbl-78z-dQ

► Thank you for watching! ◄
© 2021 Markuse videod productions
liiga pikk; ei vaadanud 5. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh markustegelane, markustegelane x ja Press any key to continue... juhul kui te midagi maha magasite :-)

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

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

► Teisi kanaleid
markustegelane x : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg (lisakanal)
Markuse asjad: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Isiklik kanal: https://www.youtube.com/channel/UCirudpTn3Hp1sxbl-78z-dQ

► Tänan, et vaatasite! ◄
© 2021 Markuse videod productions
tldw2021.mp4 Aasta kokkuvõtted Yearly recaps https://odysee.com/@MarkusTegelane:8/tl-dw-markus'-videos-in-2021-(7-min):5 MarkusTegelane . 1 /channel_db_lite/web/thumbs/401.jpg N/A /channel_db_lite/web/json/401.json N/A N/A
384 MarkusTegelane+ [Batch game] Fishing batch - gameplay showcase 1 2021-07-15 Showcase of the Fishing batch game. Not released on the main channel, because the batch file has been available for a while on my website. 0 1 0 1 https://www.youtube.com/watch?v=Su79oY9507o 0 . . Showcase of the Fishing batch game. Not released on the main channel, because the batch file has been available for a while on my website.

Download link: https://www.markustegelane.ml/markustegelane/?doc=download&id=5

Table of contents:
0:00 Intro
0:35 Main menu
3:17 Story mode: Beginner's lake
10:43 Victory screen
11:54 Story mode: Experience river
20:28 Arcade mode
22:49 Custom mode
24:58 Outro
25:20 One more thing...
. fishbatch.mp4 Lisavideod Additional content N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/384.jpg N/A /channel_db_lite/web/json/384.json N/A N/A
366 MarkusTegelane tl;dw Markuse videod aastal 2020 (6 min) 0 2021-01-01 liiga pikk; ei vaadanud 4. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh MarkusTegelane, MarkusTegelane+ ja Press any key to continue... ja cqvmix juhul kui te midagi maha magasite :-)

► 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

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

► Tänan, et vaatasite! ◄
© 2020 Markuse videod productions
0 0 0 1 https://www.youtube.com/watch?v=WLL15kTeL5o 0 tl;dw Markuse videod aastal 2020 (6 min) tl;dw Markuse videod aastal 2020 (6 min) liiga pikk; ei vaadanud 4. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh MarkusTegelane, MarkusTegelane+ ja Press any key to continue... ja cqvmix juhul kui te midagi maha magasite :-) liiga pikk; ei vaadanud 4. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh MarkusTegelane, MarkusTegelane+ ja Press any key to continue... ja cqvmix juhul kui te midagi maha magasite :-)

► 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

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

► Tänan, et vaatasite! ◄
© 2020 Markuse videod productions
tldw2020.webm Aasta kokkuvõtted Yearly recaps Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology https://odysee.com/@MarkusTegelane:8/tl-dw-markuse-videod-aastal-2020-6-min:5 MarkusTegelane . 1 /channel_db_lite/web/thumbs/366.jpg N/A /channel_db_lite/web/json/366.json N/A N/A
296 MarkusTegelane Playlist 404 - Credits 0 2020-06-28 Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments. You may also leave a rating and if you are interested in this playlist, you may add it to your collection and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! (or night if you're watching this late at night) 0 0 0 1 https://www.youtube.com/watch?v=KUC-xpEbCKw 0 &#9199 Playlist 404 - Credits . Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments &#128172&#11015. You may also leave a rating (&#128077 or &#128078) and if you are interested in this playlist, you may add it to your collection &#10133 and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! &#128522 (or night if you're watching this late at night &#127747)

This video is exclusive to this playlist &#9199 and most likely available anywhere else (I can't prevent people from adding it to their own playlists or uploads, but this 404 playlist is the only official place you can find this video)
. 404.MP4 Varia Miscellaneous Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology,secret playlist,stuff I watch on YouTube,actually this playlist is public on my channel page,you can also find it in the suggestions,if it is relevant to what you're watching,I really don't know how tagging works,but this could possibly do,this doesn't even rhyme,what is the reason of this,...,madness,the video is processing,YAY,I can now go to sleep,that is if I want to...,eleven,two N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/296.jpg N/A /channel_db_lite/web/json/296.json N/A N/A
295 MarkusTegelane TrackMania rada - Kõrbestaadion (MarkuStation 2) 0 2020-06-07 Kasutades lihtsat redigeerija muudatust, saan ma kasutada blokke kõrbe keskkonnast staadioni keskkonnas. Selles valmis rada, mida videos näete.

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

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

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

► Kasutatud teosed
TrackMania Build to Race - Desert
TrackMania Build to Race - Snow 2

► Tänan, et vaatasite! ◄
© 2020 Markuse videod productions
0 0 0 1 https://www.youtube.com/watch?v=vPkDvnOVES4 0 TrackMania track - Desert stadium (MarkuStation 2) TrackMania rada - Kõrbestaadion (MarkuStation 2) Using a simple modification to the editor, I was able to use blocks from the desert environment in stadium. This resulted in a map you see in the video.

► External links
Web site: http://markustegelane.ml (URL changed)
Random video: http://markustegelane.ml/random.html
Channel: https://www.youtube.com/MarkusTegelane

► Stay up to date
Blog: http://markustegelane-en.blogspot.com
Twitter: @MarkusMaal

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

► Music used
TrackMania Build to Race - Desert
TrackMania Build to Race - Snow 2

► Thank you for watching! ◄
© 2020 Markuse videod productions
Kasutades lihtsat redigeerija muudatust, saan ma kasutada blokke kõrbe keskkonnast staadioni keskkonnas. Selles valmis rada, mida videos näete.

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

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

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

► Kasutatud teosed
TrackMania Build to Race - Desert
TrackMania Build to Race - Snow 2

► Tänan, et vaatasite! ◄
© 2020 Markuse videod productions
kõrbestaadion.m4v MarkuStation 2 MarkuStation 2 Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology,MarkuStation,MarkuStation 2,desert,stadium,TrackMania United Forever,environment mix https://odysee.com/@MarkusTegelane:8/trackmania-rada-k-rbestaadion:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/295.jpg N/A /channel_db_lite/web/json/295.json N/A N/A
297 MarkusTegelane+ Halastamatu Miinipilduja (mäng) // Hardcore Minesweeper 1 2020-04-10 Minesweeper, aga kui kaotan, siis video saab läbi // Minesweeper, but if I lose, the video ends



Kanali Markuse asjad uue aasta vastuvõtu otseülekandest (parem hilja kui mitte kunagi) // From the channel Markus' stuff new year celebration live stream (better late than never)
0 1 0 1 https://www.youtube.com/watch?v=yFtrXTOmwSA 0 . . . Minesweeper, aga kui kaotan, siis video saab läbi // Minesweeper, but if I lose, the video ends

Kanali Markuse asjad uue aasta vastuvõtu otseülekandest (parem hilja kui mitte kunagi) // From the channel Markus' stuff new year celebration live stream (better late than never)
minesweeper.mp4 Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/297.jpg N/A /channel_db_lite/web/json/297.json N/A N/A
289 cqvmix Intro 1 2020-02-14 Channel intro. Created in Blender 0 1 0 0 https://www.youtube.com/watch?v=T8H1jx_UqIk 0 Intro Intro Channel intro. Created in Blender Channel intro. Created in Blender Intro.mp4 Introd Intros N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/289.jpg N/A N/A N/A N/A
274 MarkusTegelane tl;dw Markuse videod aastal 2019 (7 min) 0 2019-12-31 *** Video esimene esmaesitus toimub kanali Markuse asjad otseülekandes 10 minutit varem: https://www.youtube.com/watch?v=e0UTaIv1r-Y

liiga pikk; ei vaadanud 3. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh MarkusTegelane, MarkusTegelane+ ja Press any key to continue..., juhul kui te midagi maha magasite :-)

► 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

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

► Kasutatud teosed
The Tower of Light - Beginnings (Intro)

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

► Tänan, et vaatasite! ◄
© 2019 Markuse videod productions
0 0 0 1 https://www.youtube.com/watch?v=3SIOLF_txaE 0 tl;dw Markus' videos in 2019 (7 min) tl;dw Markuse videod aastal 2019 (7 min) too long; didn't watch part 3! This time I quickly show what happened on my channels, including TheMarkusGuy, TheMarkusGuy+, Press any key to continue... in case you missed it :-)

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

► Stay up to date
Blog: http://markustegelane.blogspot.com
Twitter: @MarkusMaal

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

► Music
The Tower of Light - Beginnings (Intro)

► Copyright
Music licensed under the Creative Commons (attribution required) license.

► Thank you for watching! ◄
© 2019 Markuse videod productions
*** Video esimene esmaesitus toimub kanali Markuse asjad otseülekandes 10 minutit varem: https://www.youtube.com/watch?v=e0UTaIv1r-Y

liiga pikk; ei vaadanud 3. osa! Seekord näitan väga lühidalt, mis juhtus minu kanalites, sh MarkusTegelane, MarkusTegelane+ ja Press any key to continue..., juhul kui te midagi maha magasite :-)

► 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

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

► Kasutatud teosed
The Tower of Light - Beginnings (Intro)

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

► Tänan, et vaatasite! ◄
© 2019 Markuse videod productions
tldr2019.wmv Aasta kokkuvõtted Yearly recaps Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology https://odysee.com/@MarkusTegelane:8/tl-dw-markuse-videod-aastal-2019-7-min:3 MarkusTegelane . 1 /channel_db_lite/web/thumbs/274.jpg N/A /channel_db_lite/web/json/274.json N/A N/A
336 MarkusTegelane Windows 10 Pro Hero (Microsoft reupload, not my video) 0 2019-07-23 **NOT CREATED OR ENDORSED BY ME**

An amusing explainer kind of video for Windows 10 Pro. This video was originally uploaded to the official Windows YouTube channel, before they made it private. After a lot of digging, I found it on the Video Explainers's website and decided to upload it. I recall that there was also a similar ad for Windows Server 2016, but I was unable to find it. If Microsoft has any problem with this video, then I am willing to take it down.
0 0 0 1 https://www.youtube.com/watch?v=JmjS25WCMYc 0 . . **NOT CREATED OR ENDORSED BY ME**
An amusing explainer kind of video for Windows 10 Pro. This video was originally uploaded to the official Windows YouTube channel, before they made it private. After a lot of digging, I found it on the Video Explainers's website and decided to upload it. I recall that there was also a similar ad for Windows Server 2016, but I was unable to find it. If Microsoft has any problem with this video, then I am willing to take it down.
. N/A Varia Miscellaneous N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/336.jpg N/A /channel_db_lite/web/json/336.json N/A N/A
246 MarkusTegelane Otseülekanne kanalil Markuse asjad 0 2018-12-31 Kanali link: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Ülekande link: https://www.youtube.com/watch?v=2pxLgcllgNk
0 0 0 1 https://www.youtube.com/watch?v=KNoOUB3HTfA 0 Otseülekanne kanalil Markuse asjad Otseülekanne kanalil Markuse asjad Kanali link: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Ülekande link: https://www.youtube.com/watch?v=2pxLgcllgNk
Untitled.MP4 Info ja uudised Info and news Markus Maal,MarkusTegelane,TheMarkusGuy https://odysee.com/@MarkusTegelane:8/otse-lekanne-kanalil-markuse-asjad:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/246.jpg N/A /channel_db_lite/web/json/246.json N/A N/A
335 MarkusTegelane The Ultimate WIndows 3.11 VHD (version 2.0) 1 2017-12-21 I updated my original Windows 3.11 Ultimate Virtual Machine, to be more user friendly and visually appealing.



To get the VHD, please send me a private message in the about section on my channel.
0 0 0 1 https://www.youtube.com/watch?v=Uen97LrQn60 0 The Ultimate WIndows 3.11 VHD (version 2.0) The Ultimate WIndows 3.11 VHD (version 2.0) I updated my original Windows 3.11 Ultimate Virtual Machine, to be more user friendly and visually appealing.

To get the VHD, please send me a private message in the about section on my channel.


Stay up to date:


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


Other channels


TheMarkusGuy+ : https://www.youtube.com/channel/UCGGMWFwRnLjTKRLtnO6KRFg
TheMarkusGuy++ : https://www.youtube.com/channel/UC-ah0YzIN5ef1-ywjnTljtA
Markus' stuff: https://www.youtube.com/channel/UCMD2HR_TjoK-Xh3yY6NBynQ
Press any key to continue... : https://www.youtube.com/channel/UCquUJ3h9wsJUm55zu6Sckpg
I updated my original Windows 3.11 Ultimate Virtual Machine, to be more user friendly and visually appealing.



To get the VHD, please send me a private message in the about section on my channel.
win31.mp4 Operatsioonsüsteemid Operating systems Markus Maal,MarkusTegelane,TheMarkusGuy,vhd,virtual machine,virtual pc,windows 3.1 in microsoft virtual pc,windows 3.11,operating environment https://odysee.com/@MarkusTegelane:8/the-ultimate-windows-3-11-vhd-version-2:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/335.jpg N/A N/A N/A N/A
160 MarkusTegelane Pakkfail: Lobisemine arvutiga (kaugel perfektsusest) 0 2017-11-14 Tegin lihtsa pakkfaili mis genereerib juhuslikke vastuseid teie sõnumitele. Vajalik on Windows 2000 või uuema versiooniga OS (v.a. Millennium Edition).

____________________________________________________
Allalaadimise lingid
____________________________________________________
(pole hetkel saadaval)

____________________________________________________
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...

____________________________________________________
Kasutatud teosed
____________________________________________________
Follow Me - Vibe Tracks
Proctor - Topher Mohr and Alex Elena
Happy Bee - Kevin Macleod
Pinball Spring - Kevin Macleod

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

Kanali logo või muud materjali võib kasutada ainult isiklikel põhjustel. Kui soovite logo avalikult kasutada, peate sellest mulle märku andma (vastasel juhul pean ma sellest teavitama).

____________________________________________________
Lisainfo
____________________________________________________
Video RAW nimi: computerchat.mp4
Kasutatud tarkvara: Notepad, Vegas Pro 11
Renderdamise aeg: 2 tundi
0 0 0 1 https://www.youtube.com/watch?v=MvjNRX9MvIs 0 Batch file: Chatting with your computer (far from perfect) Pakkfail: Lobisemine arvutiga (kaugel perfektsusest) I made a simple batch file that generates random replies to your messages. Requires at least Windows 2000 or newer version of OS (except Millennium Edition)

____________________________________________________
Download links
____________________________________________________
(not available yet)

____________________________________________________
Stay up to date
____________________________________________________

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

____________________________________________________
Other channels
____________________________________________________

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

____________________________________________________
Music used
____________________________________________________
Follow Me - Vibe Tracks
Proctor - Topher Mohr and Alex Elena
Happy Bee - Kevin Macleod
Pinball Spring - Kevin Macleod

Licenced under creative commons licence (author credit)

____________________________________________________
Additional information
____________________________________________________
Video RAW nimi: computerchat.mp4
Kasutatud tarkvara: Notepad, Vegas Pro 11
Renderdamise aeg: 2 tundi
Tegin lihtsa pakkfaili mis genereerib juhuslikke vastuseid teie sõnumitele. Vajalik on Windows 2000 või uuema versiooniga OS (v.a. Millennium Edition).

____________________________________________________
Allalaadimise lingid
____________________________________________________
(pole hetkel saadaval)

____________________________________________________
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...

____________________________________________________
Kasutatud teosed
____________________________________________________
Follow Me - Vibe Tracks
Proctor - Topher Mohr and Alex Elena
Happy Bee - Kevin Macleod
Pinball Spring - Kevin Macleod

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

Kanali logo või muud materjali võib kasutada ainult isiklikel põhjustel. Kui soovite logo avalikult kasutada, peate sellest mulle märku andma (vastasel juhul pean ma sellest teavitama).

____________________________________________________
Lisainfo
____________________________________________________
Video RAW nimi: computerchat.mp4
Kasutatud tarkvara: Notepad, Vegas Pro 11
Renderdamise aeg: 2 tundi
computerchat.mp4 Pakkfailid Batch files Markus Maal,MarkusTegelane,TheMarkusGuy,batch file,batch programming,chat,computer,processor,computer components N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/160.jpg N/A /channel_db_lite/web/json/160.json N/A N/A
190 MarkusTegelane+ Markus Maal introd - 60 FPS remaster 1 2017-07-20 My old channel intros. 0 1 0 1 https://www.youtube.com/watch?v=dXH0MJUutrM 0 MarkusMaal intros - 60 FPS remaster . . Minu vana kanali introd intro_remaster.MP4 Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/190.jpg N/A /channel_db_lite/web/json/190.json N/A N/A
191 MarkusTegelane+ MarkusTegelane+ intro? (Dramaatiline) 1 2017-07-20 Finally I made an intro to this channel. I hope you like it. 0 1 0 1 https://www.youtube.com/watch?v=71mvAZZmlsA 0 TheMarkusGuy+ intro? (Dramatic) . . Lõpuks ometi tegin ma intro sellele kanalile. Loodan, et see teile meeldib. mtplus_intro.MP4 Introd Intros N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/191.jpg N/A /channel_db_lite/web/json/191.json N/A N/A