Yes, it is possible. You will need to familiarize yourself with CSS3 transform
and perspective
properties.
.video-wrapper {
perspective: 1000px;
}
video {
transform: rotateY(-30deg);
}
Without going through all of the effort to create a solution, you can use an HTML5 canvas
element