Releases: remotion-dev/remotion
Releases · remotion-dev/remotion
v2.0.8
- New function! measureSpring()!
- Improved CLI output, now error messages don't mix together anymore when using
--log=verbose
- Improved Node 16 / NPM7 support
- Better timeout handling - now shows stack trace and points to documentation
- Better handling when including media with proprietary codec in Chromium
- Add more tests
We also added many more pages to docs and now have a SSR API reference and a troubleshooting section in the docs.
v2.0.7
- Fix an issue where the audio volume would not be applied at the correct time.
v2.0.6
- Fix error where input props are not properly passed while server side rendering
- Added documentation for SSR APIs
- Restructured renderer and bundler packages - internal APIs are not not directly exported but in a RenderInternals / BundlerInternals object.
- Prettier CLI output
- You can click to copy the upgrade command
npm init video
will create a project with NPM,yarn create video
creates a video with Yarn
v2.0.5
- You can now assign refs to
<Video>
and<Audio>
tags! #304 - Fix a bug where assets with weird file names would crash the render #303
- Fix a bug where audio filters would be applied to the wrong audio. #293
yarn create video
will now create a Remotion project with yarn whilenpm init video
will create a Remotion project with npm. #298- Fix Remotion installation being broken on Windows #302
v2.0.4
- Persist preview size option in editor (Fit / 100% / 50%)
- Fix an audio bug where the left and right channel get separated
- CI now runs on FFMPEG 4.1 and 4.4
v2.0.3
- New
interpolateColor()
function! - Added way more unit tests
- Fix an editor infinite loop slowing things down a lot
- add validation to sequence - from and durationInFrames must be integer
- Add
npm init video
/yarn create video
to homepage
v2.0.2
- Refactored bundling pipeline - every render is roughly 5 seconds faster!
- Removed
loop
prop from audio and video, because it was not doing anything. - Warn if your FFMPEG version is too low.
- Cleaned up dependencies, smaller NPM packages -
remotion
package now has 0 dependencies - Fix some audio being processed in a wrong fashion
- Fixed a bug on Windows where a too complex volume expression would cause a crash.
- Remotion now has a
--help
flag in it’s CLI.
v2.0.1
- You can now control the log level. Set
--log=verbose
to get much more helpful debug info or in your config file:Config.Log.setLevel('verbose')
. See: https://www.remotion.dev/docs/config/#setlevel - More locations for Chrome on Windows were added so less often a download of Puppeteer is necessary.
- Fix a bug where the video would turn out too short if audio was added
- Functions like
interpolate
are auto-imported - Check checkerboard / transparency option is enabled by default now.
v2.0
Highlights:
- Audio support: Include audio in your output!
- Audio visualization: Make your visuals react to audio!
- Export to MP3, WAV or AAC: Use Remotion to create audio!
@remotion/media-utils
: Utility package for audio and video- Rich timeline (experimental): More visual timeline with more details!
and much more! Read the blogpost for all changes: https://www.remotion.dev/blog/2-0
v1.5.4
Fixes a bug where Remotion will not pick up the Chromium location if running in Docker.