5 Commits

Author SHA1 Message Date
Jamie Hardt
006cec05e5 Merge pull request #10 from iluvcapra/bug-flake8
Flake8 code cleanups and a bug fix
2023-07-22 13:01:15 -07:00
Jamie Hardt
a95f0b5cca Nudged version number 2023-07-22 12:58:32 -07:00
Jamie Hardt
70a5206d73 Fixed dumb typo that made ptsl break 2023-07-21 22:21:48 -07:00
Jamie Hardt
128eed002d Update README.md 2023-07-21 14:54:54 -07:00
Jamie Hardt
f8a0d70942 Update README.md
Dumb typo in "last commit" badge
2023-07-21 14:54:23 -07:00
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
![](https://img.shields.io/github/license/iluvcapra/ptulsconv.svg)
![](https://img.shields.io/pypi/pyversions/ptulsconv.svg)
[![](https://img.shields.io/pypi/v/ptulsconv.svg)][pypi]
![GitHub last commit](https://img.shields.io/github/last-commit/iluvcapra/pycmx)
![GitHub last commit](https://img.shields.io/github/last-commit/iluvcapra/ptulsconv)
[![Lint and Test](https://github.com/iluvcapra/ptulsconv/actions/workflows/python-package.yml/badge.svg)](https://github.com/iluvcapra/ptulsconv/actions/workflows/python-package.yml)
[pypi]: https://pypi.org/project/ptulsconv/
@@ -10,7 +10,7 @@
# ptulsconv
Read Pro Tools text exports and generate PDF reports, JSON output.
Parse Pro Tools text exports and generate PDF reports, JSON output.
## Quick Start

View File

@@ -2,7 +2,7 @@
Parse and convert Pro Tools text exports
"""
__version__ = '2.0.0'
__version__ = '2.0.1'
__author__ = 'Jamie Hardt'
__license__ = 'MIT'
__copyright__ = "%s %s (c) 2023 %s. All rights reserved." \

View File

@@ -187,7 +187,7 @@ def convert(major_mode, input_file=None, output=sys.stdout, warnings=True):
req.time_type("tc")
req.dont_show_crossfades()
req.selected_tracks_only()
session_text = req.export_string
session_text = req.export_string()
session = parse_document(session_text)
session_tc_format = session.header.timecode_format