Capitol 360 Innovation Center Hackathon Guide
SIGN UP FOR CLOUDINARY
Capitol360 November 2019 Hackathon Guide
Capitol360 November 2019 Hackathon Guide
  • Capitol Royale 2019 Hackathon Guide
  • Capitol Royale 2019 Hackathon Guide
    • Arrival Guide / Parking
    • Nov'19 Challenges
      • Bose AR Challenge
      • Music That Moves YOU Challenge, Presented by SDL & FordDev
      • Dolby IO Challenge
      • The Bandsintown Challenge
      • Hypno Challenge
      • Cloudinary Challenge
    • Dec'18 Challenges
      • Verizon 5G Challenge
      • Dec'18 Prizes
    • June'18 UMG Challenges
      • Immersive Wayne Shorter Catalog
      • Build an A&R research tool
    • Hackathon Event Flow
  • Industry Guides
    • Music Industry 101
  • UMG Sandbox License
    • UMG Sandbox License
  • Bose AR
    • Build for Bose AR Enabled Wearables
    • Bose AR Platform and SDKs
    • Setup Requirements
    • Bose Developer Portal and Tutorials
    • Submission Timeline
  • SDL & FordDev
    • Challenge & Prizes
    • Documentation
    • About SDL & FORDDEV
    • Judging Criteria
  • Cloudinary
    • Using Cloudinary
      • Build a Cover Image
      • Video Animation + Background Removal (Green Screen Effect)
      • Video Transcoding
      • Image Optimization I
      • Categorizing Images
      • HTML5 Video Player
      • Media Authentication
      • Image Optimization II
      • Content Moderation
      • Neural Artwork
      • Artistic Filters
      • Distortion Effects
      • Audio to Waveform Images
      • Social and Cloud Sources
      • Webtask & Cloudinary
    • Cloudinary API: Workshop Deck
  • Bandsintown
    • Bandsintown Challenge
    • Techical Document
    • Exclusive app_id
    • Bandsintown API Support
  • Dolby
    • Dolby IO
    • Dolby IO Challenge
  • ConsenSys
    • ConsenSys Hackathon Developer Guide
  • Hypno
    • Hypno Challenge and Developer Documentation
Powered by GitBook
On this page
  • Cloud-based video manipulation
  • Video resizing and cropping
  • Video overlays, trimming, transcoding and more
  • Creating an image thumbnail from a video
  • Summary
  1. Cloudinary
  2. Using Cloudinary

Video Transcoding

PreviousVideo Animation + Background Removal (Green Screen Effect)NextImage Optimization I

Last updated 6 years ago

Video transcoding and manipulation

Videos are becoming more prolific with people having the capability to capture videos with a wide variety of cameras, including smartphone cameras that are available almost everywhere. Web and mobile applications that display videos online can be faced with a challenge when the videos are created or uploaded from different devices and in various formats, and then need to be delivered in a multitude of resolutions and aspect ratios to various web browsers, laptops and all kinds of mobile devices in HTML5 web friendly video formats.

On top of that, the videos may need to be further manipulated to fit the graphic design of the web application, whether that entails cropping, resizing, rotating, trimming, adding overlays, or even applying filters and various effects.

Developing and then supporting the backend required to transform videos from hi-res originals to HTML5 web friendly video formats that fit the graphic design of your application is a non-trivial technical process that requires considerable computational power. There are also many advanced tuning properties related to video encoding in the trade off between visual quality and file size, and doing this correctly can save a lot of bandwidth and load videos faster. Many developers spend considerable time building in-house solutions to support online videos.

Cloudinary offers a solution to all your development needs with:

  • No need to install any complex software - all video processing takes place in the cloud, together with an Interactive Media Library for browsing through your media files and SDKs for all popular web and mobile development frameworks for easy integration with HTML5 sites and mobile apps.

  • No need to learn how to fine tune video creation - all the best practices are already automatically applied with conversion to all formats (MP4, WebM, OGV, FLV) for optimized viewing on all web browsers and mobile devices, improving your website's loading speed while reducing your bandwidth requirements and IT costs.

  • No need to write complex code for video processing - all code is already available as a service with a URL based API for video transcoding and manipulation.

  • No need to deploy servers for video processing - it's a hosted solution.

  • No need to pre-generate all video manipulations - video transformations are done on the fly, streamed via a CDN.

Cloud-based video manipulation

The following are some examples of manipulating a video called funny_dog that was uploaded to Cloudinary.

NodeJS:

cloudinary.video("funny_dog")

Video resizing and cropping

Resize the video to a width of 200 pixels and a height of 150 pixels using the fill cropping mode and focusing on the bottom of the video in the case that only a portion of the video is used:

NodeJS:

cloudinary.video("funny_dog", {width: 200, height: 150, gravity: "south", crop: "fill"})

Resize the video to a width of 300 pixels and a height of 200 pixels using the pad cropping mode and use a blue background in the case that the video needs padding:

NodeJS:

cloudinary.video("funny_dog", {width: 300, height: 200, background: "#0e4167", crop: "pad"})

Video overlays, trimming, transcoding and more

Scale the width to 300 pixels, the height to 200 pixels, set the quality to 40 and add an overlay saying "Funny Dog" in Roboto 30px white text starting at the 3 second mark and 10 pixels from the bottom of the video:

Transcode the video to the webm format and apply the best codec settings for web viewing with the vc_auto parameter, add the cloudinary_icon image overlay with a width of 160 pixels and 10 pixels from the northeast corner with a brightness of 200% and an opacity of 70%, and adjust the total width to 350 pixels and the height to 150 pixels while padding with a blue background:

NodeJS

cloudinary.video("funny_dog", {transformation: [
  {width: 300, height: 200, quality: 40, crop: "scale"},
  {overlay: "text:Roboto_30px_bold:Funny%20Dog", color: "white", gravity: "south", y: 10, start_offset: "3"}
  ]})

Creating an image thumbnail from a video

To create a circular 300x300 sharpened image thumbnail in JPG format of the frame at the 15% mark of the funny_dog video, and then adding the cloudinary_icon image overlay with a north gravity and resizing to a width of 50% of the total image with 40% opacity:

Summary

Video uploading and delivery has become more and more popular and developers face a significant challenge handling these video files for embedding in their web and mobile apps while maintaining complex clusters to handle video uploading and transcoding. Cloudinary eliminates all the R&D work involved, and with a single line of code videos are uploaded to the cloud, and then with dynamic URLs, videos are automatically converted to all required video formats and manipulated to fit the graphic design of web applications and the various devices and resolutions.

Manipulating videos to fit the graphic design of the web application doesn't need to be complicated and hard to implement even if the video needs to be delivered in different sizes, formats and resolutions while supporting all the different web browsers, laptops and mobile devices. Cloudinary's rich set of video manipulation capabilities include: , , modifying , adjusting , controlling , , , , adding , and overlays, and lots . Videos are delivered using dynamic URLs with on-the-fly transcoding and real-time manipulation while streaming the video content via a worldwide CDN with streaming support for the best performance.

There are plenty of additional video and image manipulation options that you can choose from, we have only shown a few here to give a small taste of how easy it is to manipulate your videos. See our for more details and examples.

You can also easily create image thumbnails of any frame in a video and then apply any of Cloudinary's to the result. For example, to create an image thumbnail of the frame at 1 second in the funny_dog video in JPG format, scaled to a width of 250 pixels and a height of 150 pixels:

jpg created from funny_dog.mp4 scaled to 250x150
Sharpened, rounded jpg created from the frame at 15% of funny_dog.mp4 filled to 300x300 with an overlay

The video manipulation features are available to all our free and paid plans. If you don't have a Cloudinary account, you are welcome to and try it out.

resizing and cropping
rotating
quality
video codec settings
bit rate
video trimming
thumbnail generation
conversion to animated GIF
text
image
video
special effects
more
funny_dog.mp4 resized to 200x150 with fill and south gravity
funny_dog.mp4 padded to 350x150 and transcoded to webm with an overlay
video documentation
image transformations
sign up to our free account