xxxxxxxxxx
ffmpeg -ss 00:07:00 -i input.mp4 -t 00:06:00 -c copy output.mp4
xxxxxxxxxx
Next.js is an open-source development framework built on top of Node.js
enabling React based web applications functionalities such as server-side
rendering and generating static websites
To create next app run the following commands.
1. `npx create-next-app my-app`
or using yarn
`yarn create next-app my-app`
or using pnpm
`pnpm create next-app my-app`
2. `cd my-app`
3. `npm run dev`
or using yarn
`yarn dev`
or using pnpm
`pnpm dev`
xxxxxxxxxx
ffmpeg -i A.avi -i C.mkv -i B.mp4 -filter_complex "overlay" out1.mp4 out2.srt
xxxxxxxxxx
npx create-next-app@latest nextjs-blog --use-npm --example "https://github.com/vercel/next-learn/tree/master/basics/learn-starter"
xxxxxxxxxx
ffmpeg -i A.avi -i B.mp4 -i C.mkv -filter_complex "[1:v]hue=s=0[outv];overlay;aresample" \
-map '[outv]' -an out1.mp4 \
out2.mkv \
-map '[outv]' -map 1:a:0 out3.mkv
xxxxxxxxxx
Next.js is an open-source development framework built on top of Node.js
enabling React based web applications functionalities such as server-side
rendering and generating static websites
To create next app run the following commands.
1. `npx create-next-app my-app`
or using yarn
`yarn create next-app my-app`
or using pnpm
`pnpm create next-app my-app`
2. `cd my-app`
3. `npm run dev`
or using yarn
`yarn dev`
or using pnpm
`pnpm dev`
xxxxxxxxxx
export function CreateButton() { const status = useFormStatus(); return ( <button type="submit" className="mt-5 tracking-wide font-semibold bg-[#2b7aa6] text-white-500 w-full py-2 rounded-lg hover:bg-[#2b9aa2] transition-all duration-300 ease-in-out flex items-center justify-center focus:shadow-outline focus:outline-none"> <span className="text-light">{status.pending ? "Creating..." : "Create Account"}</span> </button> );}