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

Would like duration in milliseconds rather than rounded seconds. #12

Open
thomergil opened this issue Jan 9, 2021 · 0 comments
Open

Comments

@thomergil
Copy link

I would like FFProbe to tell me the duration in milliseconds. I created a workaround as follows, but would like native support:

mp4_data = FFProbe(mp4_file)
duration_s = mp4_data.__dict__['metadata']['Duration']

# convert to duration by pretending it's a time since 00:00:00.00
zero = datetime.datetime.strptime('00:00:00.00', '%H:%M:%S.%f')
duration = datetime.datetime.strptime(duration_s, '%H:%M:%S.%f') - zero
total_duration += duration.seconds * 1000 + duration.microseconds / 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant