Skip to content

Commit 5d99bea

Browse files
committed
Update readme, minor fix
1 parent a2ed819 commit 5d99bea

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
11
# dsPlayblast
2-
Playblast to mp4
2+
Playblast to mp4 using FFMPEG
33

4+
![ui_dialog](docs/dialog.png)
5+
6+
## Installation
7+
---
8+
- Clone repository
9+
- If folder **qt_widgets_lib** is empty - cd your_cloned_path and run:
10+
```
11+
git submodule init && git submodule update
12+
```
13+
- Add file **ds_playblast.mod** to **Documents/maya/modules** directory with following data:
14+
```
15+
+ ds_playblast 1.0.1 your_cloned_path/ds_playblast
16+
scripts: your_cloned_path/ds_playblast
17+
```
18+
## Usage
19+
---
20+
In Maya run the following Python command:
21+
```python
22+
import ds_playblast
23+
ds_playblast.MainDialog.display()
24+
```
25+
26+
## Notes
27+
---
28+
- Tool will use default FFMPEG executable that comes with it, although it can be overriden in **ds_playblast/config/user.json**

docs/dialog.png

30 KB
Loading

ds_playblast/main_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self):
4242
super(MainDialog, self).__init__()
4343
self.sizes_buffer = []
4444

45-
self.__class__.UI_INSTANC = self
45+
self.__class__.UI_INSTANCE = self
4646
self.setObjectName(self.__class__.UI_NAME)
4747
self.setWindowTitle(self.WINDOW_TITLE)
4848
self.setMinimumSize(300, 165)

0 commit comments

Comments
 (0)