9
2015
Converting videos to .ogg manually with QuicktimeTools.exe
HOW TO
– Open command prompt
– Go to your unity5 data folder, for example, C:\Program Files\Unity\Editor\Data\Tools\
– Run this command below to convert your videos: (*set correct paths to input and output videos, unless they are in the same directory)
> QuicktimeTools.exe transcode -input “yourvideo.mp4” -output “yourvideo.ogg”-vbr “4100000.000000” -abr “156000.000000”
BENEFITS
– Progress bar is displayed for the conversion!!1 (its super slow for big files..)
– You can cancel conversion with CTRL+C in the command prompt window
– You can keep working on unity while its converting
– Can open multiple command prompts to convert multiple files at the same time
—
OTHER NOTES
– If video importing doesnt work inside unity, download latest QuickTime player : https://www.apple.com/quicktime/
—
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..Unity5\Editor\Data\Tools\QuicktimeTools.exe transcode -input yourvideo.mp4 -output "yourvideo.ogg" -vbr "4100000.000000" -abr "156000.000000" | |
// can use also | |
http://video.online-convert.com/convert-to-ogg |
Related Posts
2 Comments + Add Comment
Leave a comment
Recent posts
- [GreaseMonkey] Unity Forum Fixer
- UnityHub: Make Hub application background Translucent
- Customize SpriteShapeRenderer quality (but has issues)
- Editor tool: Copy selected gameobject’s names into clipboard as rows (for Excel)
- Editor tool: Replace string in selected gameobject’s names
- UnityHub: Enable built-in Login Dialog (no more browser login/logout issues!)
- Use TikTok-TTS in Unity (with WebRequest)
- Create Scene Thumbnail Image using OnSceneSaved & OnPreviewGUI
- webgl+javascript TTS
- Using Moonsharp (LUA) + Unity Webgl
- Using 3D gameobject prefabs with Unity Tilemap + NavMesh Surface
- Custom Unity Hub Project Template Preview Image/Video (using HTML+CSS in package description)
Recent Comments
- Vector3 maths for dummies! on
- UnityHub: Make Hub application background Translucent on
- UnityHub: Make Hub application background Translucent on
- Install Android SDK+JDK+NDK for Unity (without AndroidStudio or Unity Hub) on
- Install Android SDK+JDK+NDK for Unity (without AndroidStudio or Unity Hub) on
- [Asset Store] Point Cloud Viewer & Tools on
- [Asset Store] Point Cloud Viewer & Tools on
- ffmpeg stream raw video into Unity Texture2D on
Thank you this worked like a charm.
Can also use ffmpeg command line tool
– libtheora encoder
– qscale parameter controls bitrate
– YUV420p pixel format
*info from this video @21:20
https://youtu.be/m6Ii6HYMKdw?t=21m20s