diff --git a/README.md b/README.md index 7bc86ea9..bcb84a94 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@

- rtsp-simple-server / MediaMTX + MediaMTX / rtsp-simple-server


-_rtsp-simple-server_ / [_MediaMTX_](#important-announcement) is a ready-to-use and zero-dependency server and proxy that allows users to publish, read and proxy live video and audio streams. +[_MediaMTX_](#important-announcement) / _rtsp-simple-server_ is a ready-to-use and zero-dependency server and proxy that allows users to publish, read and proxy live video and audio streams. Live streams can be published to the server with: diff --git a/internal/core/core.go b/internal/core/core.go index 7a597cdb..26a04f1e 100644 --- a/internal/core/core.go +++ b/internal/core/core.go @@ -57,7 +57,7 @@ var cli struct { // New allocates a core. func New(args []string) (*Core, bool) { parser, err := kong.New(&cli, - kong.Description("rtsp-simple-server / MediaMTX "+version), + kong.Description("MediaMTX / rtsp-simple-server "+version), kong.UsageOnError(), kong.ValueFormatter(func(value *kong.Value) string { switch value.Name { @@ -203,7 +203,7 @@ func (p *Core) createResources(initial bool) error { } if initial { - p.Log(logger.Info, "rtsp-simple-server / MediaMTX %s", version) + p.Log(logger.Info, "MediaMTX / rtsp-simple-server %s", version) if !p.confFound { p.Log(logger.Warn, "configuration file not found, using an empty configuration") }