Skip to content

Commit

Permalink
bumped up version + updated bug report
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBoothe committed Jan 7, 2021
1 parent d02f44c commit 5aab05f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,15 @@ Paste the terminal output here
```
output here:
```

**What's your platform? (if applicable)**

```
output here, run: `auto-editor --debug` if possible.
```

**What's your input? (if applicable)**

```
output here, run: `auto-editor info path/to/video
```
11 changes: 5 additions & 6 deletions .github/ISSUE_TEMPLATE/desync.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@ labels: desync
---

You're Exporting to:
- [x] Media File (Video or Audio)
- [ ] Premiere Pro
- [ ] DaVinci Resolve
- [x] Media File (Video or Audio)
- [ ] Premiere Pro
- [ ] DaVinci Resolve

What is the frame rate and length of your video?
What is the frame rate and length of your video? (use `auto-editor info`)


What is dysyncing and how bad is it?
e.g.

Every 30 minutes, the audio is one second behind of video.

Paste output with the `--debug` flag.

Paste the output when run appended with the `--debug` flag.

```
paste output here
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Actions Status](https://github.com/wyattblue/auto-editor/workflows/build/badge.svg)](https://github.com/wyattblue/auto-editor/actions)
<a href="https://discord.com/invite/kMHAWJJ/"><img src="https://img.shields.io/discord/711767814821773372?color=%237289DA&label=chat&logo=discord&logoColor=white"></a>
<img src="https://img.shields.io/badge/version-20w53a-blue.svg">
<img src="https://img.shields.io/badge/version-21w01a-blue.svg">
<p align="center"><img src="https://raw.githubusercontent.com/wyattblue/auto-editor/master/articles/imgs/auto-editor_banner.png" width="700"></p>

**Auto-Editor** is a command line application for automatically **editing video and audio** by analyzing where sections are silent and cutting them up.
Expand Down
2 changes: 1 addition & 1 deletion auto_editor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import subprocess
from shutil import rmtree

version = '20w53a'
version = '21w01a'

def file_type(file: str) -> str:
if(not os.path.isfile(file)):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def pip_version():
# pip doesn't allow standard version format (20w10a), so we have to
# conform it to match Semantic Versioning.
return '20.53.1'
return '21.1.1'

if(sys.argv[-1] == 'publish'):
os.system('rm -rf build')
Expand Down

0 comments on commit 5aab05f

Please sign in to comment.