README.md in animoto-1.5.2 vs README.md in animoto-1.5.3
- old
+ new
@@ -100,11 +100,13 @@
# create a directing and rendering manifest with the video title and
# producer. Also include rendering parameters like resolution, framerate,
# and format.
manifest = Manifests::DirectingAndRendering.new(
:title => "Amazing Title!",
- :resolution => "720p",
+ :resolution => "360p",
+ :style => "original",
+ :pacing => "fast",
:framerate => 24,
:format => 'h264'
)
# Add some images, text, and footage to our manifest.
@@ -138,11 +140,11 @@
# Create a new client using our application key and secret
client = Client.new("application_key", "secret")
# Create a directing manifest. The directing manifest controls the images
# and other visual elements that will be in our final video.
- manifest = Manifests::Directing.new(:title => "Amazing Title!")
+ manifest = Manifests::Directing.new(:title => "Amazing Title!", :pacing => "fast", :style => "original")
# Add some images, text, and footage to our manifest.
manifest << Assets::Image.new("http://website.com/picture.png")
manifest << Assets::Image.new("http://website.com/hooray.png", :spotlit => true)
manifest << Assets::TitleCard.new("Woohoo!", "Hooray for everything!")
@@ -166,10 +168,10 @@
# Now it's time to render the storyboard into a video. First we create
# a rendering manifest.
manifest = Manifests::Rendering.new(
storyboard,
- :resolution => "720p",
+ :resolution => "360p",
:framerate => 24,
:format => 'h264'
)
# Send the manifest to the API.