Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPeter Tascio
1,412 PointsMy video would not show up
Hi-I am using Sublime Text 2 and Chrome. When I "use old embed code", nothing shows up. When I try the other embed option on youtube (<iframe>) I get "the file or directory could not be found." Any idea what is happening here? Thank you!-Pete
2 Answers
James Barnett
39,199 PointsI'm going to take a guess here you are trying to embed a YouTube video in an html file on your computer that doesn't a web server.
If that's the case ...
Protocol-less URLs don't work without a web server, so in that case just add http: in front of the URL.
>
The main caveat to keep in mind when using the protocol-less reference is that it will fail on pages loaded via file:/// (i.e. HTML pages you load directly from disk to your browser). So, do be sure to include the http: protocol in the URL if you happen to be developing without a web server at all, but donβt worry about omitting it otherwise.
source: http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/
Peter Tascio
1,412 PointsThank you that worked perfectly! Yes, this is from YouTube.
Peter Tascio
1,412 PointsPeter Tascio
1,412 PointsYes, that worked perfectly, thank you!