Splicd Embedded

Embed Splicd YouTube videos in your own site!

Include this script in your head tag:

<script type="text/javascript" src=
"http://splicd.com/js/splicd.js"></script>

Then include the Splicd call anywhere you want the video to appear:

<script type="text/javascript">
  new Splicd({
    video_id: 'sBnYFox2gtE',
      ID of the youtube video in the URL,
      e.g. /watch?v=sBnYFox2gtE

    start: 596,
      default: 0
      Time in seconds where to start off

    end: 679,
      default: 0
      Time in seconds where to stop, use 0 for end of video
	
    autostart: false,
      default: false
      Automatically start playing?
    
    width: 425,
      default: 425
      Width of player
    
    height: 344
      default: 344
      Height of player
  });
</script>

A complete example:

<script type="text/javascript">
  new Splicd({
    video_id: 'kczGS8tb7zI',
    start: 200,
    end: 300,
    autostart: true
  });
</script>