1
0

fix string formatting in help

This commit is contained in:
2026-02-15 13:04:11 +01:00
parent a9fbf848b8
commit e4c0590a81
+1 -5
View File
@@ -88,11 +88,7 @@ def main():
parser.add_argument('-t', '--to', help='end time, if not end of file') parser.add_argument('-t', '--to', help='end time, if not end of file')
parser.add_argument('-q', '--quality', help='quality of output, as a percentage') parser.add_argument('-q', '--quality', help='quality of output, as a percentage')
parser.add_argument('-S', '--silent', action='store_true', help='no audio') parser.add_argument('-S', '--silent', action='store_true', help='no audio')
parser.add_argument('-c', '--crop', help=""" parser.add_argument('-c', '--crop', help="out_w:out_h:x:y or out_w:out_h for centered. NN percent for centered crop to NN percent. edge:left:right:top:bottom or edge:width:height or single value for all")
Crop formats supported:
- Standard: "out_w:out_h:x:y" or "out_w:out_h" for centered
- Percentage: "NN%" for centered crop to NN percent
- Edge: "edge:left:right:top:bottom" or "edge:width:height" or single value for all""")
args = parser.parse_args() args = parser.parse_args()
if not args.output: if not args.output: