diff options
| author | Omar Roth <omarroth@hotmail.com> | 2018-07-16 15:09:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-16 15:09:38 -0500 |
| commit | e87c6186e7db33153d73a72fb81241176d6f45a3 (patch) | |
| tree | a3de5e21bc6c52e7eb4c0d072b56d92409bec5dd | |
| parent | 1757db6a1ce4c145b89ff04a5908b251a3bd6c8b (diff) | |
| parent | 23711a127c7194c4a83ee54b803ce72fca141280 (diff) | |
| download | invidious-e87c6186e7db33153d73a72fb81241176d6f45a3.tar.gz invidious-e87c6186e7db33153d73a72fb81241176d6f45a3.tar.bz2 invidious-e87c6186e7db33153d73a72fb81241176d6f45a3.zip | |
Merge pull request #8 from omarroth/embed-options
Add 'autoplay', 'controls', 'loop' to embedded player options
| -rw-r--r-- | src/invidious.cr | 9 | ||||
| -rw-r--r-- | src/invidious/views/embed.ecr | 5 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index 715bbd89..1e30d39f 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -400,6 +400,15 @@ get "/embed/:id" do |env| end listen ||= false + autoplay = env.params.query["autoplay"]?.try &.to_i + autoplay ||= 0 + + controls = env.params.query["controls"]?.try &.to_i + controls ||= 1 + + video_loop = env.params.query["loop"]?.try &.to_i + video_loop ||= 0 + client = make_client(YT_URL) begin video = get_video(id, client, PG_DB) diff --git a/src/invidious/views/embed.ecr b/src/invidious/views/embed.ecr index 38eb5155..e9c09402 100644 --- a/src/invidious/views/embed.ecr +++ b/src/invidious/views/embed.ecr @@ -29,7 +29,7 @@ video, #my_video, .video-js, .vjs-default-skin } </style> -<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js vjs-default-skin" controls> +<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js vjs-default-skin"> <% if listen %> <% audio_streams.each_with_index do |fmt, i| %> <source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>"> @@ -44,6 +44,9 @@ video, #my_video, .video-js, .vjs-default-skin <script> var options = { preload: "auto", + <% if autoplay == 1 %>autoplay: true, <% end %> + <% if controls == 1 %>controls: true, <% end %> + <% if video_loop == 1 %>loop: true, <% end %> playbackRates: [0.5, 1, 1.5, 2], controlBar: { children: [ |
