Am using sublime video to format videos and do away with the youtube "related videos" that show up on at the end of a youtube play.
For some reason, every time I add a video to the home page, it defaults to half the size it was intend to be at (640px x 360px). Looks like from the code that a wrapper is being placed around the video thats formatting it this way?
I also tried to hard code the video using the raw HTML short-code and the video wouldnt play at all.
Here is my sublime video code placed directly into the raw HTML short-code:
Hey Casey! It seems you're using the default theme video element at the moment instead so I can't see the issue - anyway you could add it back perhaps in a test page and allow me to log in so I can assist?
Am using sublime video to format videos and do away with the youtube "related videos" that show up on at the end of a youtube play.
For some reason, every time I add a video to the home page, it defaults to half the size it was intend to be at (640px x 360px). Looks like from the code that a wrapper is being placed around the video thats formatting it this way?
I also tried to hard code the video using the raw HTML short-code and the video wouldnt play at all.
Here is my sublime video code placed directly into the raw HTML short-code:
<video id="7f15efc8" poster="http://caseypoier.com/video/poster.png" width="640" height="360" title="Stokes Home" data-uid="7f15efc8" preload="none">
<source src="http://caseypoier.com/video/Stokes-home.mp4" />
<source src="http://caseypoier.com/video/Stokes-home.mp4" data-quality="hd" />
<source src="http://caseypoier.com/video/Stokes-home.webm" />
<source src="http://caseypoier.com/video/Stokes-home.webm" data-quality="hd" />
</video>
Here is my hard code:
<video controls style="width:640px;height:360px;" poster="http://caseypoier.com/video/poster.png">
<source src="http://caseypoier.com/video/stokes-home.webm"
type=\\\'video/webm;codecs="vp8, vorbis"\\\' />
<source src="http://caseypoier.com/video/stokes-home.mp4"
type=\\\'video/mp4;codecs="avc1.42E01E, mp4a.40.2"\\\' />
<track src="devstories-en.vtt" label="English subtitles"
kind="subtitles" srclang="en" default></track>
</video>
Is anyone else running into this issue?
Anything helps,
Casey
Hey Casey! It seems you're using the default theme video element at the moment instead so I can't see the issue - anyway you could add it back perhaps in a test page and allow me to log in so I can assist?