Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lots of updates reflecting production requirements. #7

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* 基于unipath,将文件路径作为对象处理
* 更好的针对影视行业文件优化。可以快速得到frame count、version 等字段
* 扫描文件自动拼合序列帧,并且可以识别丢帧
* 更快捷的文件序列帧格式转换。支持%0?d、####、$F? 的三种形式
* 更快捷的文件序列帧格式转换。支持%0?d、####、$F?、* 的四种形式
* 支持用户自行对DayuPath 添加更多的方法、属性


Expand Down Expand Up @@ -102,4 +102,23 @@ assert ret == True
ret = DayuPathPlugin.unregister('my_key')
assert ret == True

```
```


# Unit Test

```
python -m unittest
```


# Nova 更新

* 新增了 `*` 的帧格式支持
* 自动获取`frames`属性
* 如果是序列,`exists`\`lexists`\`isfile`会判断序列结果
* 更加符合简单的`copy_sequence()`调用形式
* 不再对`child()`的参数进行检查(信任程序员)
* 支持.bgeo.sc扩展名
* `pattern()`返回的是`Pattern(frame_pattern, padding_length)`的`namedtuple`
* 小修正(`excape()`的re表达式等)
Loading