increase default maxFPS plist setting from 30 to 60

This commit is contained in:
F. Duncanh
2023-01-16 08:55:12 -05:00
parent 105df46772
commit 14df246976
6 changed files with 6 additions and 6 deletions

View File

@@ -815,7 +815,7 @@ data is updated by the client at 1 second intervals.</p>
<p><strong>-fps n</strong> sets a maximum frame rate (in frames per <p><strong>-fps n</strong> sets a maximum frame rate (in frames per
second) for the AirPlay client to stream video; n must be a whole number second) for the AirPlay client to stream video; n must be a whole number
less than 256. (The client may choose to serve video at any frame rate less than 256. (The client may choose to serve video at any frame rate
lower than this; default is 30 fps.) A setting below 30 fps might be lower than this; default is 60 fps.) A setting below 60 fps might be
useful to reduce latency if you are running more than one instance of useful to reduce latency if you are running more than one instance of
uxplay at the same time. <em>This setting is only an advisory to the uxplay at the same time. <em>This setting is only an advisory to the
client device, so setting a high value will not force a high client device, so setting a high value will not force a high

View File

@@ -690,7 +690,7 @@ which will not work if a firewall is running.
**-fps n** sets a maximum frame rate (in frames per second) for the AirPlay **-fps n** sets a maximum frame rate (in frames per second) for the AirPlay
client to stream video; n must be a whole number less than 256. client to stream video; n must be a whole number less than 256.
(The client may choose to serve video at any frame rate lower (The client may choose to serve video at any frame rate lower
than this; default is 30 fps.) A setting below 30 fps might be useful to than this; default is 60 fps.) A setting below 60 fps might be useful to
reduce latency if you are running more than one instance of uxplay at the same time. reduce latency if you are running more than one instance of uxplay at the same time.
_This setting is only an advisory to _This setting is only an advisory to
the client device, so setting a high value will not force a high framerate._ the client device, so setting a high value will not force a high framerate._

View File

@@ -839,7 +839,7 @@ updated by the client at 1 second intervals.
**-fps n** sets a maximum frame rate (in frames per second) for the **-fps n** sets a maximum frame rate (in frames per second) for the
AirPlay client to stream video; n must be a whole number less than 256. AirPlay client to stream video; n must be a whole number less than 256.
(The client may choose to serve video at any frame rate lower than this; (The client may choose to serve video at any frame rate lower than this;
default is 30 fps.) A setting below 30 fps might be useful to reduce default is 60 fps.) A setting below 60 fps might be useful to reduce
latency if you are running more than one instance of uxplay at the same latency if you are running more than one instance of uxplay at the same
time. *This setting is only an advisory to the client device, so setting time. *This setting is only an advisory to the client device, so setting
a high value will not force a high framerate.* (You can test using "-vs a high value will not force a high framerate.* (You can test using "-vs

View File

@@ -454,7 +454,7 @@ raop_init(int max_clients, raop_callbacks_t *callbacks) {
raop->width = 1920; raop->width = 1920;
raop->height = 1080; raop->height = 1080;
raop->refreshRate = 60; raop->refreshRate = 60;
raop->maxFPS = 30; raop->maxFPS = 60;
raop->overscanned = 0; raop->overscanned = 0;
/* initialize switch for display of client's streaming data records */ /* initialize switch for display of client's streaming data records */

View File

@@ -85,7 +85,7 @@ UxPlay 1.62: An open\-source AirPlay mirroring (+ audio streaming) server.
.TP .TP
\fB\-FPSdata\fR Show video-streaming performance reports sent by client. \fB\-FPSdata\fR Show video-streaming performance reports sent by client.
.TP .TP
\fB\-fps\fR n Set maximum allowed streaming framerate, default 30 \fB\-fps\fR n Set maximum allowed streaming framerate, default 60
.TP .TP
\fB\-f\fR {H|V|I}Horizontal|Vertical flip, or both=Inversion=rotate 180 deg \fB\-f\fR {H|V|I}Horizontal|Vertical flip, or both=Inversion=rotate 180 deg
.TP .TP

View File

@@ -393,7 +393,7 @@ static void print_info (char *name) {
printf("-nc do Not Close video window when client stops mirroring\n"); printf("-nc do Not Close video window when client stops mirroring\n");
printf("-nohold Drop current connection when new client connects.\n"); printf("-nohold Drop current connection when new client connects.\n");
printf("-FPSdata Show video-streaming performance reports sent by client.\n"); printf("-FPSdata Show video-streaming performance reports sent by client.\n");
printf("-fps n Set maximum allowed streaming framerate, default 30\n"); printf("-fps n Set maximum allowed streaming framerate, default 60\n");
printf("-f {H|V|I}Horizontal|Vertical flip, or both=Inversion=rotate 180 deg\n"); printf("-f {H|V|I}Horizontal|Vertical flip, or both=Inversion=rotate 180 deg\n");
printf("-r {R|L} Rotate 90 degrees Right (cw) or Left (ccw)\n"); printf("-r {R|L} Rotate 90 degrees Right (cw) or Left (ccw)\n");
printf("-m Use random MAC address (use for concurrent UxPlay's)\n"); printf("-m Use random MAC address (use for concurrent UxPlay's)\n");