Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Formatting changes
  • Loading branch information
jay-ramani authored Jan 7, 2021
1 parent 143e51c commit 5633ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ For example:
```python
if platform.system() == "Windows":
path_mkvmerge = "C:\\Program Files\\MKVToolNix\\mkvpropedit.exe"
path_ffprobe = "C:\\ffmpeg\\bin\\ffprobe.exe"
path_ffprobe = "C:\\ffmpeg\\bin\\ffprobe.exe"
else:
path_mkvmerge = "/usr/bin/mkvpropedit"
path_ffprobe = "/usr/bin/ffprobe"
path_ffprobe = "/usr/bin/ffprobe"
```
**Note**: Windows path separators have to be double escaped using another backslash, as shown in the example above. On Linux, unless these tools have already been added to the PATH environment variable, you would have to update the environment, or manually feed the path.

Expand Down

0 comments on commit 5633ea3

Please sign in to comment.