成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

這篇文章主要講解了“如何使用React創(chuàng)建視頻和動(dòng)畫(huà)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“如何使用React創(chuàng)建視頻和動(dòng)畫(huà)”吧!

創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿(mǎn)足客戶(hù)于互聯(lián)網(wǎng)時(shí)代的株洲網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

正文

Remotion是一個(gè)最近推出的庫(kù),它允許您使用 React 創(chuàng)建視頻和動(dòng)態(tài)圖形。作為一名 Web  開(kāi)發(fā)人員,我發(fā)現(xiàn)它非常有趣,因?yàn)樗鼮槲覀冏约簞?chuàng)建視頻和動(dòng)畫(huà)打開(kāi)了一扇新的大門(mén)。

簡(jiǎn)介

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

正如我提到的,Remotion是最近推出的一個(gè)令人興奮的庫(kù),它允許你使用你最喜歡的網(wǎng)絡(luò)技術(shù),如HTML、CSS、JavaScript、TypeScript等來(lái)創(chuàng)建視頻和動(dòng)畫(huà)。

除此之外,你還可以使用你所有關(guān)于編程、函數(shù)、算法、API的知識(shí)來(lái)為視頻添加各種效果。作為一個(gè)基于React的庫(kù),Remotion能夠最大限度地利用Reacts的特性,如可重用的組件、強(qiáng)大的組合和快速重載。

Remotion還配備了一個(gè)被稱(chēng)為Remotion Player的播放器,它給你帶來(lái)了真正的視頻編輯器的感覺(jué),它可以用瀏覽器來(lái)播放和審查你的視頻。

如何設(shè)置Remotion?

創(chuàng)建一個(gè)新的Remotion項(xiàng)目是非常簡(jiǎn)單的。但有兩個(gè)依賴(lài)項(xiàng)你應(yīng)該先安裝。

步驟1:安裝NodeJS和FFMPEG

由于安裝NodeJS是非常常見(jiàn)的,我將重點(diǎn)介紹安裝FFMPEG。首先,你需要從他們的下載頁(yè)面下載合適版本的FFMPEG。

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

FFMPEG Downloads page.

然后將其解壓到你選擇的文件夾中,并在CMD中以管理員權(quán)限運(yùn)行以下命令(在windows中)來(lái)更新你的路徑變量。

setx /M PATH "path\to\ffmpeg\bin;%PATH%"

第2步:?jiǎn)?dòng)新項(xiàng)目

安裝完上述依賴(lài)后,初始化一個(gè)新的Remotion視頻只需要一個(gè)命令,你可以使用yarn或npm來(lái)實(shí)現(xiàn)。

yarn create video or npm init video

你已經(jīng)成功地初始化了你的第一個(gè)Remotion項(xiàng)目,你可以使用npm run start來(lái)啟動(dòng)該項(xiàng)目。

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

Default Remotion Project

Remotion的基礎(chǔ)知識(shí)

既然你已經(jīng)啟動(dòng)了你的Remotion項(xiàng)目,你可以開(kāi)始創(chuàng)建你的視頻。但我認(rèn)為在這之前,如果你對(duì)Remotion的基礎(chǔ)知識(shí)有一定的了解會(huì)更好。

Video Properties

Width, height, durationInFrames, fps是由Remotion提供的視頻屬性。

你可以在組件中使用這些屬性來(lái)配置組件的像素大小,該組件應(yīng)該播放多少幀,以及每秒鐘的幀數(shù)。

import { useVideoConfig } from “remotion”;export const ExampleVideo = () => {  const { fps, durationInFrames, width, height } = useVideoConfig();return (  <div style={{ flex: 1, justifyContent: “center”, alignItems: “center” }}>    This video is {durationInFrames / fps} seconds long.  </div>  ); };

建議使用useVideoConfig派生這些屬性,就像上面的例子一樣,使你的組件可以重復(fù)使用。

Compositions

Compositions也是Remotion中的一種組件,在這里你可以使用上述屬性作為元數(shù)據(jù)。

import {Composition} from 'remotion'; import {HelloReaders} from './HelloReaders';export const RemotionVideo: React.FC = () => {  return (    <>     <Composition      id=”HelloReaders”      component={HelloReaders}      durationInFrames={150}      fps={30}      width={1024}      height={720}      defaultProps={{       titleText: &lsquo;Welcome to My Blog&rsquo;,       titleColor: &lsquo;black&rsquo;,      }}     />     <Composition      ...     />     <Composition      ...     />   </>  ); }

如果你觀察項(xiàng)目中的Video.tsx文件,你會(huì)看到3個(gè)Composition組件,每個(gè)組件中都有元數(shù)據(jù),包括視頻屬性。

同時(shí),這些組合也顯示在Remotion Player的左上角。

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

Compositions List

Animation Properties

當(dāng)涉及到視頻時(shí),動(dòng)畫(huà)是最重要的,而Remotion為您提供了配置一些驚人的動(dòng)畫(huà)的自由。例如,如果你需要一個(gè)簡(jiǎn)單的臉部效果,你可以逐幀調(diào)整幀的不透明度。

const frame = useCurrentFrame(); const opacity = frame >= 20 ? 1 : (frame / 20); return (  <div style={{    opacity: opacity  }}>   Hello Readers!  </div> )

除此之外,Remotion還有2個(gè)內(nèi)建的函數(shù),名為interpolate和spring,你可以用它們來(lái)建立更高級(jí)的動(dòng)畫(huà)。

插值函數(shù)接受4個(gè)輸入?yún)?shù),包括輸入值(主要是幀),輸入可以承擔(dān)的范圍值,你想把輸入映射到的數(shù)值范圍,以及一個(gè)可選參數(shù)。

彈簧動(dòng)畫(huà)通過(guò)使動(dòng)畫(huà)更自然,讓你在演示中更有創(chuàng)意。例如,下面的彈簧動(dòng)畫(huà)配置會(huì)給你的文本添加一個(gè)小的縮放效果。

const {fps} = useVideoConfig(); const scale = spring({   fps,   from: 0,   to: 1,   frame });return (   <span     style={{       color: titleColor,       marginLeft: 10,       marginRight: 10,       transform: `scale(${scale})`,       display: &lsquo;inline-block&rsquo;,     }}   >   Welcome to My Blog   </span> )

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

Spring animation

Sequence Component

Remotion中的  Sequence組件完成了2個(gè)主要任務(wù)。它主要是用來(lái)給視頻中的元素分配不同的時(shí)間框架。在保持元素之間的聯(lián)系的同時(shí),它也允許你重復(fù)使用同一個(gè)組件。

Sequence組件是一個(gè)高階組件,它有能力容納子組件。除此之外,它還接受3個(gè)prop,包括2個(gè)必需的prop和1個(gè)可選的prop。

  • name :  這是一個(gè)可選的prop。你指定的名字將出現(xiàn)在Remotion播放器的時(shí)間線上。如果你使用正確的命名模式,你將能夠理解每個(gè)組件是如何連接的。

Timeline View of Remotion Player

  • from: 這定義了框架,該組件應(yīng)該出現(xiàn)在視頻中。

  • durationInFrames: 以幀為單位的Sequence組件的長(zhǎng)度。 

例如,下面的Sequence組件將在20幀后出現(xiàn)在視頻中,并將持續(xù)到結(jié)束,因?yàn)閐urationOnFrames是無(wú)限的。

<Sequence from={20} durationInFrames={Infinity}>    <Title titleText={titleText} titleColor={titleColor} /></Sequence>

由于你現(xiàn)在對(duì)Remotion中的幾個(gè)基本屬性和組件有了基本的了解,我們可以開(kāi)始使用Remotion創(chuàng)建第一個(gè)視頻。

創(chuàng)建一個(gè)簡(jiǎn)單的視頻

正如你在上面的例子中已經(jīng)看到的,我將創(chuàng)建一個(gè)簡(jiǎn)單的視頻來(lái)顯示我的博客的標(biāo)志和歡迎詞,并有一些動(dòng)畫(huà)。

我將使用我們?cè)谖恼麻_(kāi)頭創(chuàng)建的默認(rèn)項(xiàng)目布局。

步驟1

首先,我為我的視頻中的3個(gè)元素創(chuàng)建了3個(gè)組件:Logo.tsx, Title.tsx和SubText.tsx。

Logo.tsx file:

import {spring, useCurrentFrame, useVideoConfig} from &lsquo;remotion&rsquo;; import {Img} from &lsquo;remotion&rsquo;; import image from &lsquo;./logo.png&rsquo; export const Logo: React.FC<{ transitionStart: number;  }> = ({transitionStart}) => {       const videoConfig = useVideoConfig();   const frame = useCurrentFrame();    return (    <div     style={{      textAlign: &lsquo;center&rsquo;,      marginTop: &lsquo;10%&rsquo;,      width: videoConfig.width,      height: videoConfig.height,     }}    >    <Img      style={{      transform:`scale(${spring({       fps: videoConfig.fps,       frame: frame &mdash; transitionStart,       config: {        damping: 100,        stiffness: 200,        mass: 0.5,       },      })})`,     }}      src={image}></Img>    </div>  ); };

Title.tsx file:

import {spring, useCurrentFrame, useVideoConfig} from 'remotion';export const Title: React.FC<{  titleText: string;  titleColor: string; }> = ({titleText, titleColor}) => { const videoConfig = useVideoConfig();  const frame = useCurrentFrame();  const text = titleText.split(&lsquo; &lsquo;).map((text) => ` ${text} `);  return (   <h2    style={{     fontFamily: &lsquo;Helvetica, Arial&rsquo;,     fontWeight: &lsquo;bold&rsquo;,     fontSize: 110,     textAlign: &lsquo;center&rsquo;,     position: &lsquo;absolute&rsquo;,     bottom: 160,     width: &lsquo;100%&rsquo;,    }}   >   {text.map((text, i) => {    return (     <span      key={text}      style={{       color: titleColor,       marginLeft: 10,       marginRight: 10,       transform: `scale(${spring({        fps: videoConfig.fps,        frame: frame &mdash; i * 5,        config: {         damping: 100,         stiffness: 200,         mass: 0.5,        },       })})`,       display: &lsquo;inline-block&rsquo;,      }}     >     {text}     </span>    );   })}  </h2> ); };

SubText.tsx file:

import {interpolate, useCurrentFrame} from 'remotion';export const Title: React.FC<{  titleText: string;  titleColor: string; }> = ({titleText, titleColor}) => {    const frame = useCurrentFrame();  const opacity = interpolate(frame, [0, 30], [0, 1]);return (   <div    style={{     fontFamily: 'Helvetica, Arial',     fontSize: 40,     textAlign: 'center',     position: 'absolute',     bottom: 140,     width: '100%',     opacity,    }}   >    Follow me on{' '}<code> medium.com </code>{' '} for more articles   </div>  ); };

步驟2

然后,我把這3個(gè)組件導(dǎo)入到MyVideo.tsx中,并用Sequence組件包裝,為每個(gè)組件分配相關(guān)的時(shí)間框架。除此之外,我還將幾個(gè)prop和動(dòng)畫(huà)傳遞給子組件。

import {interpolate, Sequence, useCurrentFrame, useVideoConfig} from &lsquo;remotion&rsquo;; import {Logo} from &lsquo;./components/Logo&rsquo;; import {SubText} from &lsquo;./components/SubText&rsquo;; import {Title} from &lsquo;./components/Title&rsquo;;export const MyVideo: React.FC<{ titleText: string; titleColor: string; }> = ({titleText, titleColor}) => {const frame = useCurrentFrame(); const videoConfig = useVideoConfig(); const opacity =   interpolate(   frame,   [videoConfig.durationInFrames &mdash; 25,     videoConfig.durationInFrames    15   ],   [1, 0],   {extrapolateLeft: &lsquo;clamp&rsquo;,extrapolateRight: &lsquo;clamp&rsquo;,}  ); const transitionStart = 0;return (  <div style={{flex: 1, backgroundColor: &lsquo;white&rsquo;}}>  <div style={{opacity}}>  <Sequence     from={0}     durationInFrames={videoConfig.durationInFrames}>     <Logo transitionStart={transitionStart} />   </Sequence>  <Sequence     from={transitionStart + 35}     durationInFrames={Infinity}>     <Title titleText={titleText} titleColor={titleColor} />   </Sequence>  <Sequence     from={transitionStart + 75}     durationInFrames={Infinity}>     <SubText />   </Sequence>  </div>  </div> ); };

步驟3

最后,我將上述所有文件導(dǎo)入Video.tsx,并使用Composition組件傳遞相關(guān)元數(shù)據(jù)。

import {Composition} from &lsquo;remotion&rsquo;; import {MyVideo} from &lsquo;./MyVideo&rsquo;; import {Logo} from &lsquo;./components/Logo&rsquo;; import {SubText} from &lsquo;./components/SubText&rsquo;; export const RemotionVideo: React.FC = () => {  return (   <>    <Composition     id=”HelloReaders”     component={HelloReaders}     durationInFrames={150}     fps={30}     width={1920}     height={1080}     defaultProps={{      titleText: &lsquo;Welcome to My Blog&rsquo;,      titleColor: &lsquo;black&rsquo;,     }}    />    <Composition     id=”Logo”     component={Logo}     durationInFrames={200}     fps={30}     width={1920}     height={1080}    />    <Composition     id=”Title”     component={SubText}     durationInFrames={100}     fps={30}     width={1920}     height={1080}    />   </>  ); };

現(xiàn)在,你就可以運(yùn)行你的第一個(gè)Remotion視頻了。你可以使用npm run start在開(kāi)發(fā)模式下看到它,或者使用npm run build保存為mp4文件。

如何使用React創(chuàng)建視頻和動(dòng)畫(huà)

感謝各位的閱讀,以上就是“如何使用React創(chuàng)建視頻和動(dòng)畫(huà)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)如何使用React創(chuàng)建視頻和動(dòng)畫(huà)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

標(biāo)題名稱(chēng):如何使用React創(chuàng)建視頻和動(dòng)畫(huà)
地址分享:http://jinyejixie.com/article26/pdcijg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)、網(wǎng)站策劃關(guān)鍵詞優(yōu)化、網(wǎng)站建設(shè)軟件開(kāi)發(fā)、標(biāo)簽優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
湖北省| 浏阳市| 扬中市| 鄂温| 沅江市| 达日县| 年辖:市辖区| 咸丰县| 赞皇县| 昌吉市| 黑水县| 武宁县| 苏尼特右旗| 邵武市| 昌黎县| 安丘市| 南木林县| 汝州市| 景东| 政和县| 曲水县| 宁河县| 铜鼓县| 天峨县| 三原县| 乌鲁木齐市| 鹿泉市| 成安县| 尚志市| 安乡县| 兴业县| 通城县| 莲花县| 开鲁县| 清水县| 望城县| 龙胜| 双江| 浑源县| 获嘉县| 夏河县|