最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Three.js: How can I convert a Scene into an MPG4 Video? - Stack Overflow

programmeradmin1浏览0评论

I have a three.js scene:

var scene = new THREE.Scene();

The scene contains many objects which are animated. My goal is to export the animation as a mpg4 video.

My questions:

  1. How can I export a scene to get an mpg4 video?
  2. Should I do the export on the client side or on the server side?

Edit:

I need it to run on a website or on a Java based server. No browser extensions please.

I have a three.js scene:

var scene = new THREE.Scene();

The scene contains many objects which are animated. My goal is to export the animation as a mpg4 video.

My questions:

  1. How can I export a scene to get an mpg4 video?
  2. Should I do the export on the client side or on the server side?

Edit:

I need it to run on a website or on a Java based server. No browser extensions please.

Share Improve this question edited Oct 7, 2014 at 13:01 Michael asked Oct 7, 2014 at 12:29 MichaelMichael 33.3k50 gold badges223 silver badges374 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Check this github repo, I think it does exactly that: https://github./spite/ccapture.js/

You can use this Chrome extension to record a <canvas>:

https://chrome.google./webstore/detail/rendercan/enlfmgpmfaibbeoelliknejffljklemg

This will produce a pressed file with all the frames. With that file unpressed you can use ffmpeg to bine all the frames in one single video like this:

ffmpeg -r 60 -i canvas-%09d.png out.mp4

If the mand line route intimidates you, I think After Effects or similar allow you to do that too.

If you use the FFmpeg library you could try something like:

for ( let i = 0; i < frames; i ++ ) {

    player.render( currentTime );

    const num = i.toString().padStart( 5, '0' );
    ffmpeg.FS( 'writeFile', `tmp.${num}.png`, await fetchFile( canvas.toDataURL() ) );
    currentTime += 1 / fps;

    progress.setValue( ( i / frames ) * 0.5 );

}

Github Source

发布评论

评论列表(0)

  1. 暂无评论