Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
0448c994
Commit
0448c994
authored
Sep 03, 2014
by
Waheed Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed video not playing after changing speed to anything other than 1.
BLD-1221
parent
7225420f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js
+1
-1
common/lib/xmodule/xmodule/js/src/video/03_video_player.js
+11
-9
No files found.
common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js
View file @
0448c994
...
...
@@ -496,7 +496,7 @@ function (VideoPlayer) {
state
.
speed
=
'2.0'
;
state
.
videoPlayer
.
onPlay
();
expect
(
state
.
videoPlayer
.
setPlaybackRate
)
.
toHaveBeenCalledWith
(
'2.0'
);
.
toHaveBeenCalledWith
(
'2.0'
,
true
);
state
.
videoPlayer
.
onPlay
();
expect
(
state
.
videoPlayer
.
setPlaybackRate
.
calls
.
length
)
.
toEqual
(
1
);
...
...
common/lib/xmodule/xmodule/js/src/video/03_video_player.js
View file @
0448c994
...
...
@@ -96,7 +96,7 @@ function (HTML5Video, Resizer) {
$
(
window
).
on
(
'unload'
,
state
.
saveState
);
if
(
!
state
.
isFlashMode
()
&&
state
.
speed
!=
'1.0'
)
{
state
.
videoPlayer
.
setPlaybackRate
(
state
.
speed
);
state
.
videoPlayer
.
setPlaybackRate
(
state
.
speed
,
true
);
}
});
...
...
@@ -351,18 +351,17 @@ function (HTML5Video, Resizer) {
}
}
function
setPlaybackRate
(
newSpeed
)
{
function
setPlaybackRate
(
newSpeed
,
useCueVideoById
)
{
var
duration
=
this
.
videoPlayer
.
duration
(),
time
=
this
.
videoPlayer
.
currentTime
,
methodName
,
youtubeId
;
// If useCueVideoById is true it will reload video again.
// Used useCueVideoById to fix the issue video not playing if we change
// the speed before playing the video.
if
(
this
.
isHtml5Mode
()
&&
!
(
this
.
browserIsFirefox
&&
newSpeed
===
'1.0'
&&
this
.
isYoutubeType
()
)
this
.
isHtml5Mode
()
&&
!
(
this
.
browserIsFirefox
&&
(
useCueVideoById
||
newSpeed
===
'1.0'
)
&&
this
.
isYoutubeType
())
)
{
this
.
videoPlayer
.
player
.
setPlaybackRate
(
newSpeed
);
}
else
{
...
...
@@ -385,7 +384,10 @@ function (HTML5Video, Resizer) {
// is in a PAUSED state.
//
// Why? This is how the YouTube API is implemented.
this
.
videoPlayer
.
updatePlayTime
(
time
);
// sjson.search() only works if time is defined.
if
(
!
_
.
isUndefined
(
time
))
{
this
.
videoPlayer
.
updatePlayTime
(
time
);
}
if
(
time
>
0
&&
this
.
isFlashMode
())
{
this
.
videoPlayer
.
seekTo
(
time
);
this
.
trigger
(
...
...
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