ffmpeg -i video.mp4 -r 24 -f image2 img/img_%5d.jpg
-r
: frame rate
ffmpeg -i video.mp4 -ss 00:00:01.000 -f image2 -vframes 1 myImage.jpg
import React from 'react'; | |
import { TCommandCenterDndItem } from '../CommandCenter'; | |
import { | |
DndContext, | |
DragEndEvent, | |
DragOverlay, | |
DragStartEvent, | |
MouseSensor, | |
TouchSensor, |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import RecipientsBadge from './RecipientsBadge' | |
type RecipientsDisplayProps = { | |
recipients: string[] | |
} | |
/** |