Skip to content

Commit f29245a

Browse files
authored
Merge pull request #320 from sarahayu/bundling-for-ventura
Bundling for ventura
2 parents bfbc668 + e51b22d commit f29245a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gentle/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.10.1'
1+
__version__ = '0.11.0'

gentle/resample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def resample_sox(infile, outfile, offset=None, duration=None):
6868
def resample(infile, outfile, offset=None, duration=None):
6969
if not os.path.isfile(infile):
7070
raise IOError("Not a file: %s" % infile)
71-
if shutil.which(FFMPEG):
71+
if shutil.which(FFMPEG) or os.path.exists(FFMPEG):
7272
return resample_ffmpeg(infile, outfile, offset, duration)
7373
else:
7474
return resample_sox(infile, outfile, offset, duration)

0 commit comments

Comments
 (0)