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

docs: Fix a few typos #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion converter/avcodecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ class MpegCodec(VideoCodec):
# is not correctly preserved, so we have to set it
# again in vf; take care to put it *before* crop/pad, so
# it uses the same adjusted dimensions as the codec itself
# (pad/crop will adjust it further if neccessary)
# (pad/crop will adjust it further if necessary)
def _codec_specific_parse_options(self, safe):
w = safe['width']
h = safe['height']
Expand Down
2 changes: 1 addition & 1 deletion converter/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def on_sigalrm(*_):

def thumbnail(self, fname, time, outfile, size=None, quality=DEFAULT_JPEG_QUALITY):
"""
Create a thumbnal of media file, and store it to outfile
Create a thumbnail of media file, and store it to outfile
@param time: time point (in seconds) (float or int)
@param size: Size, if specified, is WxH of the desired thumbnail.
If not specified, the video resolution is used.
Expand Down