Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9a2937d6
Commit
9a2937d6
authored
Nov 19, 2012
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua cli: fix typos.
parent
0d84e5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
share/lua/intf/cli.lua
share/lua/intf/cli.lua
+5
-5
No files found.
share/lua/intf/cli.lua
View file @
9a2937d6
...
...
@@ -41,7 +41,7 @@ description=
Note:
-I cli and -I luacli are aliases for -I luaintf --lua-intf cli
Configuration options set
able throught
the --lua-config option are:
Configuration options set
table through
the --lua-config option are:
* hosts: A list of hosts to listen on.
* host: A host to listen on. (won't be used if `hosts' is set)
* password: The password used for telnet clients.
...
...
@@ -81,9 +81,9 @@ for k,v in pairs(env) do
if
config
[
k
]
then
if
type
(
env
[
k
])
==
type
(
config
[
k
])
then
env
[
k
]
=
config
[
k
]
vlc
.
msg
.
dbg
(
"set environ
e
ment variable `"
..
k
..
"' to "
..
tostring
(
env
[
k
]))
vlc
.
msg
.
dbg
(
"set environment variable `"
..
k
..
"' to "
..
tostring
(
env
[
k
]))
else
vlc
.
msg
.
err
(
"environ
e
ment variable `"
..
k
..
"' should be of type "
..
type
(
env
[
k
])
..
". config value will be discarded."
)
vlc
.
msg
.
err
(
"environment variable `"
..
k
..
"' should be of type "
..
type
(
env
[
k
])
..
". config value will be discarded."
)
end
end
end
...
...
@@ -579,8 +579,8 @@ commands_ordered = {
{
"vratio"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"aspect-ratio"
));
args
=
"[X]"
;
help
=
"set/get video aspect ratio"
}
};
{
"vcrop"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"crop"
));
args
=
"[X]"
;
help
=
"set/get video crop"
;
aliases
=
{
"crop"
}
}
};
{
"vzoom"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"zoom"
));
args
=
"[X]"
;
help
=
"set/get video zoom"
;
aliases
=
{
"zoom"
}
}
};
{
"vdeinterlace"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"deinterlace"
));
args
=
"[X]"
;
help
=
"set/get video deintelace"
}
};
{
"vdeinterlace_mode"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"deinterlace-mode"
));
args
=
"[X]"
;
help
=
"set/get video deintelace mode"
}
};
{
"vdeinterlace"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"deinterlace"
));
args
=
"[X]"
;
help
=
"set/get video deinte
r
lace"
}
};
{
"vdeinterlace_mode"
;
{
func
=
skip
(
listvalue
(
"vout"
,
"deinterlace-mode"
));
args
=
"[X]"
;
help
=
"set/get video deinte
r
lace mode"
}
};
{
"snapshot"
;
{
func
=
common
.
snapshot
;
help
=
"take video snapshot"
}
};
{
"strack"
;
{
func
=
skip
(
listvalue
(
"input"
,
"spu-es"
));
args
=
"[X]"
;
help
=
"set/get subtitles track"
}
};
{
"hotkey"
;
{
func
=
hotkey
;
args
=
"[hotkey name]"
;
help
=
"simulate hotkey press"
;
adv
=
true
;
aliases
=
{
"key"
}
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment