Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video Editing using HTML, CSS and Javascript Only [closed]

Tags:

I need to edit a video using HTML5 and Javascript only. No flash or ffmpeg. I need to add title boards, background audio, (transitions, bumpers), borders etc.

I have tried popcorn.js but it uses CSS only and does not actually edit the video. I have even experimented with ffmpeg. FFmpeg gets the job done but takes a lot of time.

like image 886
Shrujan Shetty Avatar asked Mar 17 '14 08:03

Shrujan Shetty


People also ask

How do I hide controls in HTML video?

We can hide the controls by not adding the controls attribute to the video element. Even without controls attribute on the elements the user can view the controls section by right-clicking on the video and enabling the show controls .

How do I make a video playable in HTML?

HTML allows playing video in the web browser by using <video> tag. To embed the video in the webpage, we use src element for mentioning the file address and width and height attributes are used to define its size. Example: In this example, we are using <video> tag to to add video into the web page.

Which video format is allowed by HTML?

There are three supported video formats in HTML: MP4, WebM, and OGG.


1 Answers

When using http://www.videojs.com/ as the video player.Some of the functionality already exists in plugins for video.js but not all yet. Here are a few plugins that could add some of the functionality you would need: https://github.com/nicetip/videojs-speed https://github.com/danielcebrian/rangeslider-videojs https://github.com/xbgmsharp/videojs-rotatezoom Both the video player and plugins are open source. But like I said you might have to do some development on your part for the full range of functionality that you require.

like image 147
McLoving Avatar answered Sep 20 '22 05:09

McLoving