File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
1
# dsPlayblast
2
- Playblast to mp4
2
+ Playblast to mp4 using FFMPEG
3
3
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**
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def __init__(self):
42
42
super (MainDialog , self ).__init__ ()
43
43
self .sizes_buffer = []
44
44
45
- self .__class__ .UI_INSTANC = self
45
+ self .__class__ .UI_INSTANCE = self
46
46
self .setObjectName (self .__class__ .UI_NAME )
47
47
self .setWindowTitle (self .WINDOW_TITLE )
48
48
self .setMinimumSize (300 , 165 )
You can’t perform that action at this time.
0 commit comments