Leiti 13 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
543 Press any key to continue... Obtaining the Buzz lure in Fishing Fantasy: Buzzrod [Save file modification tutorial] 0 2023-07-01 In this video, I'm going to walk you through the process of fixing a bug in this game, which normally makes it impossible to finish the game. And the best part - you can do it with your own save!

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

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

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

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

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

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

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

Chapters:
0:00 Describing the bug
0:58 Getting the save out of a memory card
2:38 Patching the save file
4:31 Copying the patched save file back to a memory card
5:30 Testing the modified save
. BuzzrodFixFinal.mp4 Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/543.jpg N/A /channel_db_lite/web/json/543.json N/A N/A
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
114 MarkusTegelane [Prototüüp] Batch fail: Kasutajaliidese märkmik 1.6 - Märkmed märkmetes? 0 2016-11-10 See on prototüüp tulevasest batch failist Kasutajaliidese märkmik 1.6.

-------Funktsioonid-------
* Võimalus käsitleda lõpmatuid märkmeid
* Käsuviibu ühilduvus
* Ava programmiga ühilduvus (ava fail selle batch failiga)
* Hiir ja kasutajaliides

-------Lisa-------
* Parandati segadus kui sa sisestasid rea numbri ja siis selle väärtus langes
* Uus teabeekraan
* Abi on nüüd sisse ehitatud ja ei vaja demo.cmd faili
* Käsuviibu veateate ekraanid kui bg.exe ei leidu süsteemis

-------Tagasiside-------
Kui sulle meeldib see prototüüp, andke mulle seda kommentaarides teada. Sa saad ka vajutada meeldib sellele videole, kui sulle meeldib see batch fail. Sa võib ka tellida mu kanalile, et näha rohkem batch faile ja muud värki ja ei maga seda maha.

Ma tegin selle video YouTube-i videoredigeerijaga
(http://www.youtube.com/editor)
0 0 0 1 https://www.youtube.com/watch?v=CMuMblpPBWc 0 [Prototype] Batch file: GUI notepad 1.6 - Notepad ception? [Prototüüp] Batch fail: Kasutajaliidese märkmik 1.6 - Märkmed märkmetes? This is a prototype of the upcoming batch file called GUI notepad 1.6

-------Features-------
* Ability to handle unlimited notes
* Command line support
* Open with support (open file with this batch file)
* Mouse and GUI

-------Extra-------
* Fixed confusion when you entered line number and then it decreased
* New about screen
* Help is now built in and doesn't need demo.cmd
* Command line error screens when bg.exe is not found in the system

-------Feedback-------
If you like this prototype, let me know in the comments. You can also like the video if you like the batch file. You may subscribe to my channel to see more batch files and other stuff and don't miss it.

I made this video using YouTube video editor (http://www.youtube.com/editor)
See on prototüüp tulevasest batch failist Kasutajaliidese märkmik 1.6.

-------Funktsioonid-------
* Võimalus käsitleda lõpmatuid märkmeid
* Käsuviibu ühilduvus
* Ava programmiga ühilduvus (ava fail selle batch failiga)
* Hiir ja kasutajaliides

-------Lisa-------
* Parandati segadus kui sa sisestasid rea numbri ja siis selle väärtus langes
* Uus teabeekraan
* Abi on nüüd sisse ehitatud ja ei vaja demo.cmd faili
* Käsuviibu veateate ekraanid kui bg.exe ei leidu süsteemis

-------Tagasiside-------
Kui sulle meeldib see prototüüp, andke mulle seda kommentaarides teada. Sa saad ka vajutada meeldib sellele videole, kui sulle meeldib see batch fail. Sa võib ka tellida mu kanalile, et näha rohkem batch faile ja muud värki ja ei maga seda maha.

Ma tegin selle video YouTube-i videoredigeerijaga
(http://www.youtube.com/editor)
yt-editor.flv Pakkfailid Batch files YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/prototype-batch-file-gui-notepad-1-6:c MarkusTegelane . 1 /channel_db_lite/web/thumbs/114.jpg N/A /channel_db_lite/web/json/114.json N/A N/A
101 MarkusTegelane Light OS Release (from the live stream) 0 2016-10-13 Now I would like to introduce you the release of the Light OS. This has everything fixed. The download link is coming soon... 0 1 0 1 https://www.youtube.com/watch?v=uRwP0R7s00o 0 . . . . yt-editor.flv PowerPoint PowerPoint YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/light-os-release-from-the-live-stream:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/101.jpg N/A /channel_db_lite/web/json/101.json N/A N/A
102 MarkusTegelane Mängime Movement Batch-i (eilsest otseülekandest) 0 2016-10-13 Lühike klipp Movement Batch-i mängimisest eilsest otseülekandest, neile kes ei viitsinud vaadata tervet 3 tunni pikkust otseülekande videot.

Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor)
0 0 0 1 https://www.youtube.com/watch?v=DBRaDo_iu1o 0 Mängime Movement Batch-i (eilsest otseülekandest) Mängime Movement Batch-i (eilsest otseülekandest) Lühike klipp Movement Batch-i mängimisest eilsest otseülekandest, neile kes ei viitsinud vaadata tervet 3 tunni pikkust otseülekande videot. Lühike klipp Movement Batch-i mängimisest eilsest otseülekandest, neile kes ei viitsinud vaadata tervet 3 tunni pikkust otseülekande videot.

Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor)
yt-editor.flv Pakkfailid Batch files YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/m-ngime-movement-batch-i-eilsest-otse:5 MarkusTegelane . 1 /channel_db_lite/web/thumbs/102.jpg N/A /channel_db_lite/web/json/102.json N/A N/A
103 MarkusTegelane Teeme midagi Windows XP-ga (eilsest otseülekandest) 0 2016-10-13 Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor) 0 0 0 1 https://www.youtube.com/watch?v=81U7wYBbvaU 0 Teeme midagi Windows XP-ga (eilsest otseülekandest) Teeme midagi Windows XP-ga (eilsest otseülekandest) N/A Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor) yt-editor.flv Operatsioonsüsteemid Operating systems YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/teeme-midagi-windows-xp-ga-eilsest-otse:d MarkusTegelane . 1 /channel_db_lite/web/thumbs/103.jpg N/A /channel_db_lite/web/json/103.json N/A N/A
104 MarkusTegelane Windows 7 mängude mängimine 2 (eilsest otseülekandest) 0 2016-10-13 See on lühike klipp otseülekandest, mis toimus kolmapäeval 12. oktoobril. Mõeldud neile, kes ei taha tervet otseülekannet vaadata, et teada saada, mis otseülekandes on.

Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor)
0 0 0 1 https://www.youtube.com/watch?v=MnxsSNXDvHc 0 Windows 7 mängude mängimine 2 (eilsest otseülekandest) Windows 7 mängude mängimine 2 (eilsest otseülekandest) See on lühike klipp otseülekandest, mis toimus kolmapäeval 12. oktoobril. Mõeldud neile, kes ei taha tervet otseülekannet vaadata, et teada saada, mis otseülekandes on. See on lühike klipp otseülekandest, mis toimus kolmapäeval 12. oktoobril. Mõeldud neile, kes ei taha tervet otseülekannet vaadata, et teada saada, mis otseülekandes on.

Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor)
yt-editor.flv MarkuStation 1 MarkuStation 1 YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/windows-7-m-ngude-m-ngimine-2-eilsest:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/104.jpg N/A /channel_db_lite/web/json/104.json N/A N/A
97 MarkusTegelane Red Screen of Death Windows Vista beeta versioonis 0 2016-09-29 Selles videos hävitan Windows Vista beeta versiooni Red Screen of Death-ga. 0 1 0 1 https://www.youtube.com/watch?v=mnV_llQaYdI 0 . . . Selles videos hävitan Windows Vista beeta versiooni Red Screen of Death-ga.

Viited:
Muusika: Stale Mate - Jingle Punks - YouTube-i fonoteek
Koostasin selle video YouTube'i videotöötlejaga (http://www.youtube.com/editor)
yt-editor.flv Operatsioonsüsteemid Operating systems YouTube'i redigeerija https://odysee.com/@MarkusTegelane:8/red-screen-of-death-windows-vista-beeta:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/97.jpg N/A /channel_db_lite/web/json/97.json N/A N/A
170 MarkusTegelane+ Mac-i veateateekraanid - Video monteerimine 1 2015-10-25 Selles videos näitan ma kuidas tegin Mac-i veateateekraanide video Windows Live Movie Makeriga. 0 1 0 1 https://www.youtube.com/watch?v=Z4nwXZbIp3I 0 Mac Screens of Death - Video editing . In this video I show how did I make Mac Screens of Death video using Windows Live Movie Maker.

Random video: https://www.youtube.com/watch?v=ugFM4...
Original: https://www.youtube.com/watch?v=PkLNu...

I made this video using YouTube video editor
(https://www.youtube.com/editor)
Selles videos näitan ma kuidas tegin Mac-i veateateekraanide video Windows Live Movie Makeriga.

Suvaline video: https://www.youtube.com/watch?v=ugFM4...
Originaal: https://www.youtube.com/watch?v=PkLNu...

Markus Maal-i kanal: http://www.youtube.com/MarkusMaal
Teine kanal: https://www.youtube.com/channel/UCMD2...

Koostasin selle video YouTube'i videotöötlejaga (https://www.youtube.com/editor)
yt-editor.flv Monteerimine Editing YouTube'i redigeerija,Mac OS (Operating System),Software (Industry),Macintosh (Video Game Platform),YouTube video editor,Screens of Death,Video Editing,In this video i'll show you,how I made Mac screens of Death video,using Windows Live Movie Maker,Random video,Original,I made this video using N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/170.jpg N/A /channel_db_lite/web/json/170.json N/A N/A
23 MarkusTegelane Movement Batch 1.9 Järjekordne LAHE! uuendus! HD 0 2015-03-03 Yup, I made a little bigger update! Movement batch version 1.9 What's new: All features you saw in video (new finish design, little editor updates,multiplayer updates, readme updates and so on) 0 0 0 1 https://www.youtube.com/watch?v=uOoGP636mh8 0 Movement batch 1.9 Another COOL! update! HD Movement Batch 1.9 Järjekordne LAHE! uuendus! HD Mis on uut : Kõik funktsioonid, mida nägid videos (uus finiši disain, väikesed redigeerija uuendused, mitmikmängija uuendused, loemind uuendused ja nii edasi) Yup, I made a little bigger update! Movement batch version 1.9 What's new: All features you saw in video (new finish design, little editor updates,multiplayer updates, readme updates and so on) Movement batch 1.9 - Another COOL! update! [HD].mp4 Pakkfailid Batch files Cool,Funny,Fun,Another,Family,Fun (Composer),Update,Lol,Movement,Batch File (File Format),Markus Maal,connect,connected,ühendama,ühendatud https://odysee.com/@MarkusTegelane:8/movement-batch-1-9-another-cool-update:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/23.jpg N/A /channel_db_lite/web/json/23.json N/A N/A