Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
f108a5ef
Commit
f108a5ef
authored
Nov 12, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
luarc: add frame by frame support.
parent
1e724a9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
share/lua/intf/rc.lua
share/lua/intf/rc.lua
+6
-0
No files found.
share/lua/intf/rc.lua
View file @
f108a5ef
...
@@ -384,6 +384,10 @@ function rate(name,client)
...
@@ -384,6 +384,10 @@ function rate(name,client)
end
end
end
end
function
frame
(
name
,
client
)
vlc
.
var
.
trigger_callback
(
vlc
.
object
.
input
(),
"frame-next"
);
end
function
listvalue
(
obj
,
var
)
function
listvalue
(
obj
,
var
)
return
function
(
client
,
value
)
return
function
(
client
,
value
)
local
o
=
vlc
.
object
.
find
(
nil
,
obj
,
"anywhere"
)
local
o
=
vlc
.
object
.
find
(
nil
,
obj
,
"anywhere"
)
...
@@ -443,8 +447,10 @@ commands_ordered = {
...
@@ -443,8 +447,10 @@ commands_ordered = {
{
"faster"
;
{
func
=
rate
;
help
=
"faster playing of stream"
}
};
{
"faster"
;
{
func
=
rate
;
help
=
"faster playing of stream"
}
};
{
"slower"
;
{
func
=
rate
;
help
=
"slower playing of stream"
}
};
{
"slower"
;
{
func
=
rate
;
help
=
"slower playing of stream"
}
};
{
"normal"
;
{
func
=
rate
;
help
=
"normal playing of stream"
}
};
{
"normal"
;
{
func
=
rate
;
help
=
"normal playing of stream"
}
};
{
"frame"
;
{
func
=
frame
;
help
=
"play frame by frame"
}
};
{
"fullscreen"
;
{
func
=
skip2
(
vlc
.
video
.
fullscreen
);
args
=
"[on|off]"
;
help
=
"toggle fullscreen"
;
aliases
=
{
"f"
,
"F"
}
}
};
{
"fullscreen"
;
{
func
=
skip2
(
vlc
.
video
.
fullscreen
);
args
=
"[on|off]"
;
help
=
"toggle fullscreen"
;
aliases
=
{
"f"
,
"F"
}
}
};
{
"info"
;
{
func
=
input_info
;
help
=
"information about the current stream"
}
};
{
"info"
;
{
func
=
input_info
;
help
=
"information about the current stream"
}
};
{
"states"
;
{
func
=
fixme
;
help
=
"show statistical information"
}
};
{
"get_time"
;
{
func
=
get_time
(
"time"
);
help
=
"seconds elapsed since stream's beginning"
}
};
{
"get_time"
;
{
func
=
get_time
(
"time"
);
help
=
"seconds elapsed since stream's beginning"
}
};
{
"is_playing"
;
{
func
=
is_playing
;
help
=
"1 if a stream plays, 0 otherwise"
}
};
{
"is_playing"
;
{
func
=
is_playing
;
help
=
"1 if a stream plays, 0 otherwise"
}
};
{
"get_title"
;
{
func
=
ret_print
(
vlc
.
input
.
get_title
);
help
=
"the title of the current stream"
}
};
{
"get_title"
;
{
func
=
ret_print
(
vlc
.
input
.
get_title
);
help
=
"the title of the current stream"
}
};
...
...
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