Files
Client/Library/dxx8/samples/Multimedia/Media/SLOMO.XTL
LGram16 e067522598 Initial commit: ROW Client source code
Game client codebase including:
- CharacterActionControl: Character and creature management
- GlobalScript: Network, items, skills, quests, utilities
- RYLClient: Main client application with GUI and event handlers
- Engine: 3D rendering engine (RYLGL)
- MemoryManager: Custom memory allocation
- Library: Third-party dependencies (DirectX, boost, etc.)
- Tools: Development utilities

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 16:24:34 +09:00

46 lines
1.8 KiB
Plaintext

<!-- In this example, you will see a 400x300 24 bit movie. The first clip -->
<!-- will be in slow motion, and use the "crop" mode of stretching, and the -->
<!-- second clip will be sped up, and use the "PreserveAspectRatio" mode of -->
<!-- stretching. There will be a fade transition between the two. -->
<!-- Also, the audio will crossfade using the volume effect, and since -->
<!-- the second clip is much louder than the first, the second clip's audio -->
<!-- volume will be cut. -->
<!-- NOTE: If you install the DirectX SDK to a path other than c:\dxsdk, -->
<!-- then you must change the media path for each clip src below. -->
<timeline>
<group type="video" framerate="15" width="400" height="300" bitdepth="24">
<track>
<clip src="c:\dxsdk\samples\multimedia\media\butterfly.mpg" start="0" stop="6" mstart="0" mstop="3" stretchmode="crop" />
</track>
<track>
<clip src="c:\dxsdk\samples\multimedia\media\clocktxt.avi" start="6" stop="9" mstart="0" mstop="9" stretchmode="PreserveAspectRatio"/>
<transition clsid="{16b280c5-ee70-11d1-9066-00c04fd9189d}" start="5" stop="7" />
</track>
</group>
<group type="audio">
<track>
<clip src="c:\dxsdk\samples\multimedia\media\piano2.mp3" start="0" stop="6" mstart="4" mstop="8"/>
<effect clsid="{036A9790-C153-11d2-9EF7-006008039E37}" start="0" stop="6">
<param name="vol" value="1">
<linear time="6" value=".5"/>
</param>
</effect>
</track>
<track>
<clip src="c:\dxsdk\samples\multimedia\media\clocktxt.avi" start="6" stop="9" mstart="0" mstop="9"/>
<effect clsid="{036A9790-C153-11d2-9EF7-006008039E37}" start="6" stop="9">
<param name="vol" value=".2">
</param>
</effect>
</track>
</group>
</timeline>