2016-01-07 13:41:25 +00:00
|
|
|
class EmbedPlaybackOptions < PlaybackOptions
|
|
|
|
attribute :autoplay, Boolean, default: false
|
2016-05-01 17:15:04 +00:00
|
|
|
|
|
|
|
def as_json(*)
|
|
|
|
if !poster && t && t > 0
|
|
|
|
super.merge({ poster: "npt:#{t}" })
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-07 13:41:25 +00:00
|
|
|
end
|