add 60 fps

This commit is contained in:
猪小乐 2023-06-06 12:48:37 +08:00
parent 81d21ecfff
commit 0f76bed888

View File

@ -617,7 +617,7 @@ void print_usage ()
" -l, --language <string> Language code, like: und\n"
" -v, --video-format <string> Either of: 480i, 480p, 576i,\n"
" 720p, 1080i, 1080p\n"
" -f, --fps <float> Either of: 23.976, 24, 25, 29.97, 50, 59.94\n"
" -f, --fps <float> Either of: 23.976, 24, 25, 29.97, 50, 59.94, 60\n"
" -x, --x-offset <integer> X offset, for use with partial frames.\n"
" -y, --y-offset <integer> Y offset, for use with partial frames.\n"
" -d, --t-offset <string> Offset timecodes by this many frames or\n"
@ -800,6 +800,7 @@ int main (int argc, char *argv[])
, {"50", "50", 50, 0, 50, 1}
, {"59.94", "59.94", 60, 0, 60000, 1001}
/*, {"59.94d", "59.94", 60000/1001.0, 1}*/
, {"60", "60", 60, 0, 60, 1}
, {NULL, NULL, 0, 0, 0, 0}
};
char *avs_filename = NULL;