Skip to content

Commit

Permalink
Update version to 0.3.0 and handle exception in config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SohamTilekar committed Mar 20, 2024
1 parent bc2591a commit 244ce09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vidiopy/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.37"
__version__ = "0.3.0"
7 changes: 5 additions & 2 deletions vidiopy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
FFPROBE_BINARY = None

try:
FFMPEG_BINARY = ffmpegio.get_path()
FFPROBE_BINARY = ffmpegio.get_path(probe=True)
try:
FFMPEG_BINARY = ffmpegio.get_path()
FFPROBE_BINARY = ffmpegio.get_path(probe=True)
except Exception:
ffmpegio.set_path(os.path.join(__file__, "binary"))
except Exception:
try:
if os.path.exists(
Expand Down

0 comments on commit 244ce09

Please sign in to comment.