Skip to content

Commit 37c4fa9

Browse files
committed
Renaming project and main file and updating usages.
1 parent e30c573 commit 37c4fa9

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mp4 Video Joiner
1+
# Mp4 Video Combiner
22

33
Python script that assist in concatenating mp4 video files into a single larger file and automatically create named chapter marks at each join making it really easy to skip forward and backwards within the video file.
44

@@ -22,7 +22,7 @@ pip install humanize
2222
Assuming you have a bunch of videos named "clipXX.mp4" in a folder called _videos_ then this is how you feed all of them into the concatinator and specify an output file
2323

2424
```
25-
python catgen.py --match "D:\videos\clip*" -o "D:\videos\all_clips.mp4"
25+
python combine.py --match "D:\videos\clip*" -o "D:\videos\all_clips.mp4"
2626
```
2727

2828
## Advanced usage
@@ -34,7 +34,7 @@ No worries! :relieved:
3434
The script can automatically segment the output files according to known DVD and BluRay disk sizes using the `--disk` command line argument
3535

3636
```
37-
python catgen.py --match "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --disk dvd8
37+
python combine.py --match "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --disk dvd8
3838
```
3939

4040
This will create multiple output files
@@ -58,7 +58,7 @@ _Neat_ :thumbsup:
5858
You can also specify a custom file size using the `--size` argument. The example below limits the output file size to 800MB.
5959

6060
```
61-
python catgen.py -m "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --size 800MB
61+
python combine.py -m "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --size 800MB
6262
```
6363

6464
The `--size` argument supports multiple format endings such as 'MB' for megabytes and 'GB' for gigabytes. If nothing is specified then 'MB' is assumed. You can also specify fractional sizes such as '15.5GB'.
@@ -67,7 +67,7 @@ The `--size` argument supports multiple format endings such as 'MB' for megabyte
6767
If the output file exists the script will by default print an error and terminate without doing anything. To silently overwrite existing files with the same file name you can use the `--overwrite` switch
6868

6969
```
70-
python catgen.py -m "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --disk dvd8 --overwrite
70+
python combine.py -m "D:\barbie\*.mp4" -o "D:\toburn\Barbie.mp4" --disk dvd8 --overwrite
7171
```
7272

7373
## Contributing

src/catgen.py src/combine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# coding=utf-8
3-
__version__ = "0.2.0"
3+
__version__ = "1.0.0"
44
"""
55
Python script that generates the necessary mp4box -cat commands to concatinate multiple video files
66
together and generates a chapter file that marks the beginning of each concatenated file in the final result.
@@ -13,7 +13,7 @@
1313
Requires:
1414
pip install humanize
1515
16-
See: https://github.com/sverrirs/mp4box-catgen
16+
See: https://github.com/sverrirs/mp4combine
1717
Author: Sverrir Sigmundarson [email protected] https://www.sverrirs.com
1818
"""
1919
from constant import DISKSIZES, ABSSIZES # Constants for the script

src/constant.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env python
22
# coding=utf-8
3-
__version__ = "0.2.0"
3+
__version__ = "1.0.0"
44
"""
5-
Constants declaration for the catgen.py script.
5+
Constants declaration for the combine.py script.
66
7+
See: https://github.com/sverrirs/mp4combine
8+
Author: Sverrir Sigmundarson [email protected] https://www.sverrirs.com
79
"""
810

911
# Most DVD±R/RWs are advertised using the definition of 1 Gigabyte = 1,000,000,000 bytes

0 commit comments

Comments
 (0)