Skip to content

Commit

Permalink
Added ffmpeg binary installation logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cubicbyte committed Aug 25, 2023
1 parent edb2903 commit 4d92dbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion reddit_account_generator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Download necessary ffmpeg binary
import static_ffmpeg
import logging as _logging
_logger = _logging.getLogger(__name__)

# Download necessary ffmpeg binary
_logger.info('Downloading ffmpeg binary...')
static_ffmpeg.add_paths()
del static_ffmpeg

Expand Down

0 comments on commit 4d92dbb

Please sign in to comment.