SVG에 애니메이션이 적용되어 있으며 동영상으로 변환하고 싶습니다 (일련의 사진도 가능함). 애니메이션은 웹킷 브라우저 (Safari, Chrome) 및 Batik의 squiggle 에서 재생됩니다 . 화면 캡처기로 캡처를 시도했습니다. 그러나 영화는 꽤 거칠어집니다.
이를위한 좋은 도구가 있습니까?
다음은 애니메이션 예입니다.
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%">
<rect id="BB" x="0" y="0" height="100%" width="100%" fill="white"/>
<g id="firstone" stroke="black">
<g id="g3" fill="none" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" dur="5s" from="360 100 100" to="0 100 100" repeatCount="indefinite"/>
<g id="g2">
<ellipse id="g1" cx="100" cy="100" rx="75" ry="75">
</ellipse>
<g id="sec">
<line x1="100" y1="100" x2="45" y2="45" style="stroke: rgb(99, 99, 99); stroke-width: 6;"/>
</g>
</g>
</g>
<g id="pit">
<line x1="100" y1="175" x2="100" y2="200" style="stroke: red; stroke-width: 6;"/>
</g>
</g>
</svg>