मेरे पास एक एनिमेटेड एसवीजी है और इसे एक फिल्म में बदलना होगा (चित्रों की एक श्रृंखला भी करेगी)। एनीमेशन वेबकिट ब्राउज़र (सफारी, क्रोम) और बाटिक के स्क्विगल में खेलता है । मैंने इसे एक स्क्रीन कैप्चरर के साथ कैप्चर करने की कोशिश की। लेकिन फिल्म बहुत झटकेदार समाप्त होती है।
क्या इसके लिए एक अच्छा उपकरण है?
यहाँ एक उदाहरण है एनीमेशन:
<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>