Skip to content

Commit

Permalink
typo fixed and updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
srbcheema1 committed Apr 28, 2019
1 parent 114b0d1 commit 78979b4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It can also be used to `extract` out `audio` or `video` from a media file.
sudo python3 -m pip install medipack
```
you may use `--user` option to install locally for user only in `~/.local/bin`
don't forget `~/.local/bin` should be in your `PATH`. Add line `export PATH=$PATH="~/.local/bin"` in your `.bashrc`
don't forget `~/.local/bin` should be in your `PATH`. Add line `export PATH=$PATH:"~/.local/bin"` in your `.bashrc`

### Usage

Expand Down Expand Up @@ -205,10 +205,10 @@ medipack extract input.mp4 --video

### Contact / Social Media

[![Github](https://raw.githubusercontent.com/srbcheema1/medipack/master/extra/github.png)](https://github.com/srbcheema1/)
[![LinkedIn](https://raw.githubusercontent.com/srbcheema1/medipack/master/extra/linkedin-48x48.png)](https://www.linkedin.com/in/srbcheema1/)
[![Facebook](https://raw.githubusercontent.com/srbcheema1/medipack/master/extra/fb.png)](https://www.facebook.com/srbcheema/)
[![Github](https://raw.githubusercontent.com/srbcheema1/CheemaFy/master/myPlugins/extra_things/png_images/social/github.png)](https://github.com/srbcheema1/)
[![LinkedIn](https://raw.githubusercontent.com/srbcheema1/CheemaFy/master/myPlugins/extra_things/png_images/social/linkedin-48x48.png)](https://www.linkedin.com/in/srbcheema1/)
[![Facebook](https://raw.githubusercontent.com/srbcheema1/CheemaFy/master/myPlugins/extra_things/png_images/social/fb.png)](https://www.facebook.com/srbcheema/)

### Development by
### Developed by

Developer / Author: [Srb Cheema](https://github.com/srbcheema1/)
Binary file removed extra/fb.png
Binary file not shown.
Binary file removed extra/github.png
Binary file not shown.
Binary file removed extra/linkedin-48x48.png
Binary file not shown.
2 changes: 1 addition & 1 deletion medipack/lib/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class HelpFormatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawTextHelp

crop_parser = subparsers.add_parser('crop',formatter_class=HelpFormatter)
crop_parser.add_argument("inp",nargs='?',
type=lambda x: Args._is_valid_file(trim_parser,x),
type=lambda x: Args._is_valid_file(crop_parser,x),
help="input video file ex: input.mp4")
crop_parser.add_argument("-t", "--top",
default=0,
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
argcomplete==1.9.4
argcomplete>=1.9.4

0 comments on commit 78979b4

Please sign in to comment.