SO - 19289402

HTML

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js"></script>
<script src="angular-route.min.js"></script>
<div ng-controller="AppController">
    <h1>{{videoID}}</h1>
    <iframe class="youtube-player" type="text/html" width="auto"
        height="auto" src="http://www.youtube.com/embed/{{videoID}}"
        allowfullscreen frameborder="0"> </iframe>
</div>

JavaScript

var app = angular.module('my-app', ['ngRoute'], function () {

})

app.controller('AppController', function ($scope) {
  
        $scope.videoID = "C0DPdy98e4c";
})