2024-09-18 11:00:16 -04:00
# Tinyblast Plugin v2.0.0-beta
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
Tinyblast is a custom playblast tool for Maya, designed to offer more flexible control over the output format, codec, and playblast settings than the default Maya playblast options.
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
## New in v2.0.0-beta
- Removed the button from the Playblast Options window.
- Created a new custom window that contains options to choose the file format and codec.
- Added playblast options such as:
- Quality slider
- Resolution scalar
- Frame padding
2024-09-18 10:04:54 -04:00
## Known Limitations
- **Windows Only**: This release is optimized for Maya’ s `.avi` file output on Windows. Future versions may extend support to other platforms and formats.
2024-09-18 11:00:16 -04:00
- **Uncompressed AVI Temporary File**: Tinyblast relies on Maya’ s built-in playblast function, which still generates an uncompressed `.avi` file before converting it to the other format. This `.avi` file is temporary and will be deleted by Maya after a few minutes.
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
## Known Issues
- The `.mov` format currently does not work with the DNxHD, DNxHR, or ProRes codecs.
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
## Installation
2024-09-18 10:04:54 -04:00
1. Download and install Tinyblast.
2. **Load the Plugin in Maya** :
- Navigate to `Windows > Settings/Preferences > Plug-in Manager` .
- If `Tinyblast.py` is not listed, click **Browse** and locate the `Tinyblast.py` file.
- Check the **Loaded** box to enable the plugin.
- (Optional) Check **Auto-load** to automatically load the plugin every time Maya starts.
2024-09-18 11:00:16 -04:00
3. Access the Playblast Options window in Maya.
## How to Use
Currently, there is no menu button to open Tinyblast. You will need to run the following command in Maya's script editor:
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
```python
import maya.cmds as cmds
2024-09-18 11:10:19 -04:00
cmds.openTinyblastOptions()
2024-09-18 11:00:16 -04:00
```
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
## Future Plans
- Further improvements to format and codec compatibility.
- Adding more formats and codecs if needed.
- Refining the UI for easier access and use.
2024-09-18 10:04:54 -04:00
2024-09-18 11:00:16 -04:00
## Requirements
- Maya (tested on Maya 2025, but should work with any version that supports the same OpenMaya plugin version).
- FFmpeg bundled with the plugin.