Skip to content
Snippets Groups Projects
Commit 3e983cad authored by David Trattnig's avatar David Trattnig
Browse files

Skip additional filesystem queues for now.

parent 2d2da31f
No related branches found
No related tags found
No related merge requests found
......@@ -136,41 +136,41 @@ server.register(namespace = source.id(input_filesystem_1),
end
)
server.register(namespace = source.id(input_filesystem_2),
description="seek to relative position in #{source.id(input_filesystem_2)}",
usage = "seek <duration in seconds>",
"seek",
fun(t) -> begin
log("Seeking #{t} sec")
t = float_of_string(default=0.,t)
ret = source.seek(input_filesystem_2, t)
"Seeked #{ret} seconds."
end
)
server.register(namespace = source.id(input_filesystem_3),
description="seek to relative position in #{source.id(input_filesystem_3)}",
usage = "seek <duration in seconds>",
"seek",
fun(t) -> begin
log("Seeking #{t} sec")
t = float_of_string(default=0.,t)
ret = source.seek(input_filesystem_3, t)
"Seeked #{ret} seconds."
end
)
server.register(namespace = source.id(input_filesystem_4),
description="seek to relative position in #{source.id(input_filesystem_4)}",
usage = "seek <duration in seconds>",
"seek",
fun(t) -> begin
log("Seeking #{t} sec")
t = float_of_string(default=0.,t)
ret = source.seek(input_filesystem_4, t)
"Seeked #{ret} seconds."
end
)
# server.register(namespace = source.id(input_filesystem_2),
# description="seek to relative position in #{source.id(input_filesystem_2)}",
# usage = "seek <duration in seconds>",
# "seek",
# fun(t) -> begin
# log("Seeking #{t} sec")
# t = float_of_string(default=0.,t)
# ret = source.seek(input_filesystem_2, t)
# "Seeked #{ret} seconds."
# end
# )
# server.register(namespace = source.id(input_filesystem_3),
# description="seek to relative position in #{source.id(input_filesystem_3)}",
# usage = "seek <duration in seconds>",
# "seek",
# fun(t) -> begin
# log("Seeking #{t} sec")
# t = float_of_string(default=0.,t)
# ret = source.seek(input_filesystem_3, t)
# "Seeked #{ret} seconds."
# end
# )
# server.register(namespace = source.id(input_filesystem_4),
# description="seek to relative position in #{source.id(input_filesystem_4)}",
# usage = "seek <duration in seconds>",
# "seek",
# fun(t) -> begin
# log("Seeking #{t} sec")
# t = float_of_string(default=0.,t)
# ret = source.seek(input_filesystem_4, t)
# "Seeked #{ret} seconds."
# end
# )
def fadeTo(source_number) =
if source_number == "" then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment