import React, { memo, useEffect, useState, useCallback, useRef, useMemo } from 'react'; import { unstable_batchedUpdates as batchedUpdates } from 'react-dom'; import { FaAngleLeft, FaWindowClose } from 'react-icons/fa'; import { MdRotate90DegreesCcw } from 'react-icons/md'; import { AnimatePresence, motion } from 'framer-motion'; import { Table, SideSheet, Button, Position, ForkIcon, DisableIcon, Select, ThemeProvider } from 'evergreen-ui'; import { useStateWithHistory } from 'react-use/lib/useStateWithHistory'; import useDebounceOld from 'react-use/lib/useDebounce'; // Want to phase out this import { useDebounce } from 'use-debounce'; import i18n from 'i18next'; import { useTranslation } from 'react-i18next'; import Mousetrap from 'mousetrap'; import JSON5 from 'json5'; import fromPairs from 'lodash/fromPairs'; import sortBy from 'lodash/sortBy'; import flatMap from 'lodash/flatMap'; import isEqual from 'lodash/isEqual'; import theme from './theme'; import useTimelineScroll from './hooks/useTimelineScroll'; import useUserPreferences from './hooks/useUserPreferences'; import useFfmpegOperations from './hooks/useFfmpegOperations'; import useKeyframes from './hooks/useKeyframes'; import useWaveform from './hooks/useWaveform'; import NoFileLoaded from './NoFileLoaded'; import Canvas from './Canvas'; import TopMenu from './TopMenu'; import Sheet from './Sheet'; import HelpSheet from './HelpSheet'; import StreamsSelector from './StreamsSelector'; import SegmentList from './SegmentList'; import Settings from './Settings'; import Timeline from './Timeline'; import BottomBar from './BottomBar'; import ExportConfirm from './ExportConfirm'; import ValueTuner from './components/ValueTuner'; import VolumeControl from './components/VolumeControl'; import SubtitleControl from './components/SubtitleControl'; import BatchFilesList from './components/BatchFilesList'; import ConcatDialog from './components/ConcatDialog'; import Loading from './components/Loading'; import { loadMifiLink } from './mifi'; import { controlsBackground } from './colors'; import allOutFormats from './outFormats'; import { captureFrameFromTag, captureFrameFfmpeg } from './capture-frame'; import { defaultProcessedCodecTypes, getStreamFps, isCuttingStart, isCuttingEnd, readFileMeta, getFormatData, renderThumbnails as ffmpegRenderThumbnails, extractStreams, getAllStreams, runStartupCheck, isAudioDefinitelyNotSupported, isIphoneHevc, tryMapChaptersToEdl, getDuration, getTimecodeFromStreams, createChaptersFromSegments, extractSubtitleTrack, } from './ffmpeg'; import { exportEdlFile, readEdlFile, saveLlcProject, loadLlcProject, askForEdlImport } from './edlStore'; import { formatYouTube, getTimeFromFrameNum as getTimeFromFrameNumRaw, getFrameCountRaw } from './edlFormats'; import { getOutPath, toast, errorToast, handleError, setFileNameTitle, getOutDir, withBlur, checkDirWriteAccess, dirExists, openDirToast, isMasBuild, isStoreBuild, dragPreventer, doesPlayerSupportFile, isDurationValid, filenamify, getOutFileExtension, generateSegFileName, defaultOutSegTemplate, havePermissionToReadFile, resolvePathIfNeeded, pathExists, html5ifiedPrefix, html5dummySuffix, findExistingHtml5FriendlyFile, deleteFiles, isStreamThumbnail, getAudioStreams, getVideoStreams, isOutOfSpaceError, shuffleArray, } from './util'; import { formatDuration } from './util/duration'; import { adjustRate } from './util/rate-calculator'; import { askForOutDir, askForImportChapters, createNumSegments, createFixedDurationSegments, promptTimeOffset, askForHtml5ifySpeed, askForFileOpenAction, confirmExtractAllStreamsDialog, cleanupFilesDialog, showDiskFull, showCutFailedDialog, labelSegmentDialog, openYouTubeChaptersDialog, openAbout, showEditableJsonDialog } from './dialogs'; import { openSendReportDialog } from './reporting'; import { fallbackLng } from './i18n'; import { createSegment, getCleanCutSegments, getSegApparentStart, findSegmentsAtCursor, sortSegments, invertSegments, getSegmentTags } from './segments'; import { getOutSegError as getOutSegErrorRaw } from './util/outputNameTemplate'; const isDev = window.require('electron-is-dev'); const electron = window.require('electron'); // eslint-disable-line const { exists } = window.require('fs-extra'); const filePathToUrl = window.require('file-url'); const { extname, parse: parsePath, join: pathJoin, basename, dirname } = window.require('path'); const { dialog } = electron.remote; const { focusWindow } = electron.remote.require('./electron'); const ffmpegExtractWindow = 60; const calcShouldShowWaveform = (zoomedDuration) => (zoomedDuration != null && zoomedDuration < ffmpegExtractWindow * 8); const calcShouldShowKeyframes = (zoomedDuration) => (zoomedDuration != null && zoomedDuration < ffmpegExtractWindow * 8); const commonFormats = ['mov', 'mp4', 'matroska', 'mp3', 'ipod']; const zoomMax = 2 ** 14; const rightBarWidth = 200; const leftBarWidth = 200; const videoStyle = { width: '100%', height: '100%', objectFit: 'contain' }; const App = memo(() => { // Per project state const [commandedTime, setCommandedTime] = useState(0); const [ffmpegCommandLog, setFfmpegCommandLog] = useState([]); const [previewFilePath, setPreviewFilePath] = useState(); const [working, setWorkingState] = useState(); const [usingDummyVideo, setUsingDummyVideo] = useState(false); const [playing, setPlaying] = useState(false); const [playerTime, setPlayerTime] = useState(); const [duration, setDuration] = useState(); const [fileFormat, setFileFormat] = useState(); const [fileFormatData, setFileFormatData] = useState(); const [chapters, setChapters] = useState(); const [detectedFileFormat, setDetectedFileFormat] = useState(); const [rotation, setRotation] = useState(360); const [cutProgress, setCutProgress] = useState(); const [startTimeOffset, setStartTimeOffset] = useState(0); const [filePath, setFilePath] = useState(''); const [externalStreamFiles, setExternalStreamFiles] = useState([]); const [customTagsByFile, setCustomTagsByFile] = useState({}); const [customTagsByStreamId, setCustomTagsByStreamId] = useState({}); const [dispositionByStreamId, setDispositionByStreamId] = useState({}); const [detectedFps, setDetectedFps] = useState(); const [mainStreams, setMainStreams] = useState([]); const [mainVideoStream, setMainVideoStream] = useState(); const [mainAudioStream, setMainAudioStream] = useState(); const [copyStreamIdsByFile, setCopyStreamIdsByFile] = useState({}); const [streamsSelectorShown, setStreamsSelectorShown] = useState(false); const [concatDialogVisible, setConcatDialogVisible] = useState(false); const [zoom, setZoom] = useState(1); const [thumbnails, setThumbnails] = useState([]); const [shortestFlag, setShortestFlag] = useState(false); const [zoomWindowStartTime, setZoomWindowStartTime] = useState(0); const [disabledSegmentIds, setDisabledSegmentIds] = useState({}); const [subtitlesByStreamId, setSubtitlesByStreamId] = useState({}); const [activeSubtitleStreamIndex, setActiveSubtitleStreamIndex] = useState(); const [hideCanvasPreview, setHideCanvasPreview] = useState(false); const [exportConfirmVisible, setExportConfirmVisible] = useState(false); // State per application launch const [keyframesEnabled, setKeyframesEnabled] = useState(true); const [waveformEnabled, setWaveformEnabled] = useState(false); const [thumbnailsEnabled, setThumbnailsEnabled] = useState(false); const [showRightBar, setShowRightBar] = useState(true); const [cleanupChoices, setCleanupChoices] = useState({ tmpFiles: true }); const [rememberConvertToSupportedFormat, setRememberConvertToSupportedFormat] = useState(); const [helpVisible, setHelpVisible] = useState(false); const [settingsVisible, setSettingsVisible] = useState(false); const [tunerVisible, setTunerVisible] = useState(); const [mifiLink, setMifiLink] = useState(); const [alwaysConcatMultipleFiles, setAlwaysConcatMultipleFiles] = useState(false); // Batch state / concat files const [batchFiles, setBatchFiles] = useState([]); // Segment related state const segCounterRef = useRef(0); const clearSegCounter = useCallback(() => { segCounterRef.current = 0; }, []); const createIndexedSegment = useCallback(({ segment, incrementCount } = {}) => { const ret = createSegment({ segIndex: segCounterRef.current, ...segment }); if (incrementCount) segCounterRef.current += 1; return ret; }, []); const createInitialCutSegments = useCallback(() => [createIndexedSegment()], [createIndexedSegment]); const [currentSegIndex, setCurrentSegIndex] = useState(0); const [cutStartTimeManual, setCutStartTimeManual] = useState(); const [cutEndTimeManual, setCutEndTimeManual] = useState(); const [cutSegments, setCutSegments, cutSegmentsHistory] = useStateWithHistory( createInitialCutSegments(), 100, ); const clearSegments = useCallback(() => { clearSegCounter(); setCutSegments(createInitialCutSegments()); }, [clearSegCounter, createInitialCutSegments, setCutSegments]); const shuffleSegments = useCallback(() => setCutSegments((oldSegments) => shuffleArray(oldSegments)), [setCutSegments]); // Store "working" in a ref so we can avoid race conditions const workingRef = useRef(working); const setWorking = useCallback((val) => { workingRef.current = val; setWorkingState(val); }, []); const durationSafe = isDurationValid(duration) ? duration : 1; const zoomedDuration = isDurationValid(duration) ? duration / zoom : undefined; const isCustomFormatSelected = fileFormat !== detectedFileFormat; const { captureFormat, setCaptureFormat, customOutDir, setCustomOutDir, keyframeCut, setKeyframeCut, preserveMovData, setPreserveMovData, movFastStart, setMovFastStart, avoidNegativeTs, setAvoidNegativeTs, autoMerge, setAutoMerge, timecodeFormat, setTimecodeFormat, invertCutSegments, setInvertCutSegments, autoExportExtraStreams, setAutoExportExtraStreams, askBeforeClose, setAskBeforeClose, enableAskForImportChapters, setEnableAskForImportChapters, enableAskForFileOpenAction, setEnableAskForFileOpenAction, playbackVolume, setPlaybackVolume, autoSaveProjectFile, setAutoSaveProjectFile, wheelSensitivity, setWheelSensitivity, invertTimelineScroll, setInvertTimelineScroll, language, setLanguage, ffmpegExperimental, setFfmpegExperimental, hideNotifications, setHideNotifications, autoLoadTimecode, setAutoLoadTimecode, autoDeleteMergedSegments, setAutoDeleteMergedSegments, exportConfirmEnabled, setExportConfirmEnabled, segmentsToChapters, setSegmentsToChapters, preserveMetadataOnMerge, setPreserveMetadataOnMerge, simpleMode, setSimpleMode, outSegTemplate, setOutSegTemplate, keyboardSeekAccFactor, setKeyboardSeekAccFactor, keyboardNormalSeekSpeed, setKeyboardNormalSeekSpeed, enableTransferTimestamps, setEnableTransferTimestamps, outFormatLocked, setOutFormatLocked, safeOutputFileName, setSafeOutputFileName, enableAutoHtml5ify, setEnableAutoHtml5ify, segmentsToChaptersOnly, setSegmentsToChaptersOnly, } = useUserPreferences(); const { mergeFiles: ffmpegMergeFiles, html5ifyDummy, cutMultiple, autoMergeSegments, html5ify, fixInvalidDuration, } = useFfmpegOperations({ filePath, enableTransferTimestamps }); const outSegTemplateOrDefault = outSegTemplate || defaultOutSegTemplate; useEffect(() => { const l = language || fallbackLng; i18n.changeLanguage(l).catch(console.error); electron.ipcRenderer.send('setLanguage', l); }, [language]); const videoRef = useRef(); const isFileOpened = !!filePath; const onOutFormatLockedClick = () => setOutFormatLocked((v) => (v ? undefined : fileFormat)); const onOutputFormatUserChange = useCallback((newFormat) => { setFileFormat(newFormat); if (outFormatLocked) { setOutFormatLocked(newFormat === detectedFileFormat ? undefined : newFormat); } }, [detectedFileFormat, outFormatLocked, setOutFormatLocked]); const setTimelineMode = useCallback((newMode) => { if (newMode === 'waveform') { setWaveformEnabled(v => !v); setThumbnailsEnabled(false); } else { setThumbnailsEnabled(v => !v); setWaveformEnabled(false); } }, []); const toggleExportConfirmEnabled = useCallback(() => setExportConfirmEnabled((v) => !v), [setExportConfirmEnabled]); const toggleSegmentsToChapters = useCallback(() => setSegmentsToChapters((v) => !v), [setSegmentsToChapters]); const togglePreserveMetadataOnMerge = useCallback(() => setPreserveMetadataOnMerge((v) => !v), [setPreserveMetadataOnMerge]); const toggleKeyframesEnabled = useCallback(() => { setKeyframesEnabled((old) => { const enabled = !old; if (enabled && !calcShouldShowKeyframes(zoomedDuration)) { toast.fire({ text: i18n.t('Key frames will show on the timeline. You need to zoom in to view them') }); } return enabled; }); }, [zoomedDuration]); function appendFfmpegCommandLog(command) { setFfmpegCommandLog(old => [...old, { command, time: new Date() }]); } const setCopyStreamIdsForPath = useCallback((path, cb) => { setCopyStreamIdsByFile((old) => { const oldIds = old[path] || {}; return ({ ...old, [path]: cb(oldIds) }); }); }, []); const toggleRightBar = useCallback(() => setShowRightBar(v => !v), []); const toggleCopyStreamId = useCallback((path, index) => { setCopyStreamIdsForPath(path, (old) => ({ ...old, [index]: !old[index] })); }, [setCopyStreamIdsForPath]); const hideAllNotifications = hideNotifications === 'all'; const toggleSafeOutputFileName = useCallback(() => setSafeOutputFileName((v) => { if (v && !hideAllNotifications) toast.fire({ icon: 'info', text: i18n.t('Output file name will not be sanitized, and any special characters will be preserved. This may cause the export to fail and can cause other funny issues. Use at your own risk!') }); return !v; }), [setSafeOutputFileName, hideAllNotifications]); useEffect(() => { if (videoRef.current) videoRef.current.volume = playbackVolume; }, [playbackVolume]); const seekAbs = useCallback((val) => { const video = videoRef.current; if (val == null || Number.isNaN(val)) return; let outVal = val; if (outVal < 0) outVal = 0; if (outVal > video.duration) outVal = video.duration; video.currentTime = outVal; setCommandedTime(outVal); }, []); const commandedTimeRef = useRef(commandedTime); useEffect(() => { commandedTimeRef.current = commandedTime; }, [commandedTime]); const seekRel = useCallback((val) => { seekAbs(videoRef.current.currentTime + val); }, [seekAbs]); const seekRelPercent = useCallback((val) => { if (!isDurationValid(zoomedDuration)) return; seekRel(val * zoomedDuration); }, [seekRel, zoomedDuration]); const shortStep = useCallback((direction) => { if (!detectedFps) return; // try to align with frame const currentTimeNearestFrameNumber = getFrameCountRaw(detectedFps, videoRef.current.currentTime); const nextFrame = currentTimeNearestFrameNumber + direction; seekAbs(nextFrame / detectedFps); }, [seekAbs, detectedFps]); // 360 means we don't modify rotation const isRotationSet = rotation !== 360; const effectiveRotation = isRotationSet ? rotation : (mainVideoStream && mainVideoStream.tags && mainVideoStream.tags.rotate && parseInt(mainVideoStream.tags.rotate, 10)); const zoomRel = useCallback((rel) => setZoom(z => Math.min(Math.max(z + rel, 1), zoomMax)), []); const canvasPlayerRequired = !!(mainVideoStream && usingDummyVideo); const canvasPlayerWanted = !!(mainVideoStream && isRotationSet && !hideCanvasPreview); // Allow user to disable it const canvasPlayerEnabled = (canvasPlayerRequired || canvasPlayerWanted); useEffect(() => { // Reset the user preference when the state changes to true if (canvasPlayerEnabled) setHideCanvasPreview(false); }, [canvasPlayerEnabled]); const comfortZoom = isDurationValid(duration) ? Math.max(duration / 100, 1) : undefined; const toggleComfortZoom = useCallback(() => { if (!comfortZoom) return; setZoom((prevZoom) => { if (prevZoom === 1) return comfortZoom; return 1; }); }, [comfortZoom]); const onTimelineWheel = useTimelineScroll({ wheelSensitivity, invertTimelineScroll, zoomRel, seekRel }); const getSegApparentEnd = useCallback((seg) => { const time = seg.end; if (time !== undefined) return time; if (isDurationValid(duration)) return duration; return 0; // Haven't gotten duration yet }, [duration]); const apparentCutSegments = useMemo(() => cutSegments.map(cutSegment => ({ ...cutSegment, start: getSegApparentStart(cutSegment), end: getSegApparentEnd(cutSegment), })), [cutSegments, getSegApparentEnd]); const haveInvalidSegs = useMemo(() => apparentCutSegments.filter(cutSegment => cutSegment.start >= cutSegment.end).length > 0, [apparentCutSegments]); const currentSegIndexSafe = Math.min(currentSegIndex, cutSegments.length - 1); const currentCutSeg = useMemo(() => cutSegments[currentSegIndexSafe], [currentSegIndexSafe, cutSegments]); const currentApparentCutSeg = useMemo(() => apparentCutSegments[currentSegIndexSafe], [apparentCutSegments, currentSegIndexSafe]); const jumpSegStart = useCallback((index) => seekAbs(apparentCutSegments[index].start), [apparentCutSegments, seekAbs]); const jumpSegEnd = useCallback((index) => seekAbs(apparentCutSegments[index].end), [apparentCutSegments, seekAbs]); const jumpCutStart = useCallback(() => jumpSegStart(currentSegIndexSafe), [currentSegIndexSafe, jumpSegStart]); const jumpCutEnd = useCallback(() => jumpSegEnd(currentSegIndexSafe), [currentSegIndexSafe, jumpSegEnd]); const sortedCutSegments = useMemo(() => sortSegments(apparentCutSegments), [apparentCutSegments]); const inverseCutSegments = useMemo(() => { const inverted = !haveInvalidSegs && isDurationValid(duration) ? invertSegments(sortedCutSegments, duration) : undefined; return (inverted || []).map((seg) => ({ ...seg, segId: `${seg.start}-${seg.end}` })); }, [duration, haveInvalidSegs, sortedCutSegments]); const invertAllCutSegments = useCallback(() => { // don't reset segIndex (which represent colors) when inverting const newInverseCutSegments = inverseCutSegments.map((inverseSegment, segIndex) => createSegment({ ...inverseSegment, segIndex })); if (newInverseCutSegments.length < 1) { errorToast(i18n.t('Make sure you have no overlapping segments.')); return; } setCutSegments(newInverseCutSegments); }, [inverseCutSegments, setCutSegments]); const updateSegAtIndex = useCallback((index, newProps) => { if (index < 0) return; const cutSegmentsNew = [...cutSegments]; cutSegmentsNew.splice(index, 1, { ...cutSegments[index], ...newProps }); setCutSegments(cutSegmentsNew); }, [setCutSegments, cutSegments]); const setCutTime = useCallback((type, time) => { if (!isDurationValid(duration)) return; const currentSeg = currentCutSeg; if (type === 'start' && time >= getSegApparentEnd(currentSeg)) { throw new Error('Start time must precede end time'); } if (type === 'end' && time <= getSegApparentStart(currentSeg)) { throw new Error('Start time must precede end time'); } updateSegAtIndex(currentSegIndexSafe, { [type]: Math.min(Math.max(time, 0), duration) }); }, [currentSegIndexSafe, getSegApparentEnd, currentCutSeg, duration, updateSegAtIndex]); const maxLabelLength = safeOutputFileName ? 100 : 500; const onLabelSegmentPress = useCallback(async (index) => { const { name } = cutSegments[index]; const value = await labelSegmentDialog({ currentName: name, maxLength: maxLabelLength }); if (value != null) updateSegAtIndex(index, { name: value }); }, [cutSegments, updateSegAtIndex, maxLabelLength]); const onViewSegmentTagsPress = useCallback(async (index) => { const segment = cutSegments[index]; function inputValidator(jsonStr) { try { const json = JSON5.parse(jsonStr); if (!(typeof json === 'object' && Object.values(json).every((val) => typeof val === 'string'))) throw new Error(); return undefined; } catch (err) { return i18n.t('Invalid JSON'); } } const tags = getSegmentTags(segment); const newTagsStr = await showEditableJsonDialog({ title: i18n.t('Segment tags'), text: i18n.t('View and edit segment tags in JSON5 format:'), inputValue: Object.keys(tags).length > 0 ? JSON5.stringify(tags, null, 2) : '', inputValidator }); if (newTagsStr != null) updateSegAtIndex(index, { tags: JSON5.parse(newTagsStr) }); }, [cutSegments, updateSegAtIndex]); const updateSegOrder = useCallback((index, newOrder) => { if (newOrder > cutSegments.length - 1 || newOrder < 0) return; const newSegments = [...cutSegments]; const removedSeg = newSegments.splice(index, 1)[0]; newSegments.splice(newOrder, 0, removedSeg); setCutSegments(newSegments); setCurrentSegIndex(newOrder); }, [cutSegments, setCutSegments]); const updateSegOrders = useCallback((newOrders) => { const newSegments = sortBy(cutSegments, (seg) => newOrders.indexOf(seg.segId)); const newCurrentSegIndex = newOrders.indexOf(currentCutSeg.segId); setCutSegments(newSegments); if (newCurrentSegIndex >= 0 && newCurrentSegIndex < newSegments.length) setCurrentSegIndex(newCurrentSegIndex); }, [cutSegments, setCutSegments, currentCutSeg]); const reorderSegsByStartTime = useCallback(() => { setCutSegments(sortBy(cutSegments, getSegApparentStart)); }, [cutSegments, setCutSegments]); const getFrameCount = useCallback((sec) => getFrameCountRaw(detectedFps, sec), [detectedFps]); const getTimeFromFrameNum = useCallback((frameNum) => getTimeFromFrameNumRaw(detectedFps, frameNum), [detectedFps]); const formatTimecode = useCallback(({ seconds, shorten }) => { if (timecodeFormat === 'frameCount') { const frameCount = getFrameCount(seconds); return frameCount != null ? frameCount : ''; } if (timecodeFormat === 'timecodeWithFramesFraction') { return formatDuration({ seconds, fps: detectedFps, shorten }); } return formatDuration({ seconds, shorten }); }, [detectedFps, timecodeFormat, getFrameCount]); const getCurrentTime = useCallback(() => (playing ? videoRef.current.currentTime : commandedTimeRef.current), [playing]); // const getSafeCutTime = useCallback((cutTime, next) => ffmpeg.getSafeCutTime(neighbouringFrames, cutTime, next), [neighbouringFrames]); const addCutSegment = useCallback(() => { try { // Cannot add if prev seg is not finished if (currentCutSeg.start === undefined && currentCutSeg.end === undefined) return; const suggestedStart = getCurrentTime(); /* if (keyframeCut) { const keyframeAlignedStart = getSafeCutTime(suggestedStart, true); if (keyframeAlignedStart != null) suggestedStart = keyframeAlignedStart; } */ const cutSegmentsNew = [ ...cutSegments, createIndexedSegment({ segment: { start: suggestedStart }, incrementCount: true }), ]; setCutSegments(cutSegmentsNew); setCurrentSegIndex(cutSegmentsNew.length - 1); } catch (err) { console.error(err); } }, [currentCutSeg.start, currentCutSeg.end, getCurrentTime, cutSegments, createIndexedSegment, setCutSegments]); const setCutStart = useCallback(() => { if (!filePath) return; const currentTime = getCurrentTime(); // https://github.com/mifi/lossless-cut/issues/168 // If current time is after the end of the current segment in the timeline, // add a new segment that starts at playerTime if (currentCutSeg.end != null && currentTime > currentCutSeg.end) { addCutSegment(); } else { try { const startTime = currentTime; /* if (keyframeCut) { const keyframeAlignedCutTo = getSafeCutTime(startTime, true); if (keyframeAlignedCutTo != null) startTime = keyframeAlignedCutTo; } */ setCutTime('start', startTime); } catch (err) { handleError(err); } } }, [filePath, getCurrentTime, currentCutSeg.end, addCutSegment, setCutTime]); const setCutEnd = useCallback(() => { if (!filePath) return; try { const endTime = getCurrentTime(); /* if (keyframeCut) { const keyframeAlignedCutTo = getSafeCutTime(endTime, false); if (keyframeAlignedCutTo != null) endTime = keyframeAlignedCutTo; } */ setCutTime('end', endTime); } catch (err) { handleError(err); } }, [filePath, getCurrentTime, setCutTime]); const outputDir = getOutDir(customOutDir, filePath); const changeOutDir = useCallback(async () => { const newOutDir = await askForOutDir(outputDir); if (newOutDir) setCustomOutDir(newOutDir); }, [outputDir, setCustomOutDir]); const clearOutDir = useCallback(() => { setCustomOutDir(); }, [setCustomOutDir]); const usingPreviewFile = !!previewFilePath; const effectiveFilePath = previewFilePath || filePath; const fileUri = effectiveFilePath ? filePathToUrl(effectiveFilePath) : ''; const projectSuffix = 'proj.llc'; const oldProjectSuffix = 'llc-edl.csv'; // New LLC format is stored along with input file https://github.com/mifi/lossless-cut/issues/905 const getEdlFilePath = useCallback((fp) => getOutPath({ filePath: fp, nameSuffix: projectSuffix }), []); // Old versions of LosslessCut used CSV files and stored them in customOutDir: const getEdlFilePathOld = useCallback((fp) => getOutPath({ customOutDir, filePath: fp, nameSuffix: oldProjectSuffix }), [customOutDir]); const edlFilePath = useMemo(() => getEdlFilePath(filePath), [getEdlFilePath, filePath]); const currentSaveOperation = useMemo(() => { if (!edlFilePath) return undefined; return { cutSegments, edlFilePath, filePath }; }, [cutSegments, edlFilePath, filePath]); const [debouncedSaveOperation] = useDebounce(currentSaveOperation, isDev ? 2000 : 500); const lastSaveOperation = useRef(); useEffect(() => { async function save() { // NOTE: Could lose a save if user closes too fast, but not a big issue I think if (!autoSaveProjectFile || !debouncedSaveOperation) return; const { cutSegments: saveOperationCutSegments, edlFilePath: saveOperationEdlFilePath, filePath: saveOperationFilePath } = debouncedSaveOperation; try { // Initial state? Don't save (same as createInitialCutSegments but without counting) if (isEqual(getCleanCutSegments(saveOperationCutSegments), getCleanCutSegments([createSegment()]))) return; if (lastSaveOperation.current && lastSaveOperation.current.edlFilePath === saveOperationEdlFilePath && isEqual(getCleanCutSegments(lastSaveOperation.current.cutSegments), getCleanCutSegments(saveOperationCutSegments))) { console.log('Segments unchanged, skipping save'); return; } await saveLlcProject({ savePath: saveOperationEdlFilePath, filePath: saveOperationFilePath, cutSegments: saveOperationCutSegments }); lastSaveOperation.current = debouncedSaveOperation; } catch (err) { errorToast(i18n.t('Unable to save project file')); console.error('Failed to save CSV', err); } } save(); }, [debouncedSaveOperation, autoSaveProjectFile]); function onPlayingChange(val) { setPlaying(val); if (!val) { setCommandedTime(videoRef.current.currentTime); } } const onStopPlaying = useCallback(() => onPlayingChange(false), []); const onSartPlaying = useCallback(() => onPlayingChange(true), []); const onDurationChange = useCallback((e) => { // Some files report duration infinity first, then proper duration later // Sometimes after seeking to end of file, duration might change const { duration: durationNew } = e.target; console.log('onDurationChange', durationNew); if (isDurationValid(durationNew)) setDuration(durationNew); }, []); const onTimeUpdate = useCallback((e) => { const { currentTime } = e.target; if (playerTime === currentTime) return; setPlayerTime(currentTime); }, [playerTime]); const increaseRotation = useCallback(() => { setRotation((r) => (r + 90) % 450); setHideCanvasPreview(false); // Matroska is known not to work, so we warn user. See https://github.com/mifi/lossless-cut/discussions/661 const supportsRotation = !['matroska', 'webm'].includes(fileFormat); if (!supportsRotation && !hideAllNotifications) toast.fire({ text: i18n.t('Lossless rotation might not work with this file format. You may try changing to MP4') }); }, [hideAllNotifications, fileFormat]); const ensureOutDirAccessible = useCallback(async (outFilePath) => { let newCustomOutDir = customOutDir; // Reset if doesn't exist anymore const customOutDirExists = await dirExists(customOutDir); if (!customOutDirExists) { setCustomOutDir(undefined); newCustomOutDir = undefined; } const effectiveOutDirPath = getOutDir(newCustomOutDir, outFilePath); const hasDirWriteAccess = await checkDirWriteAccess(effectiveOutDirPath); if (!hasDirWriteAccess) { if (isMasBuild) { const newOutDir = await askForOutDir(effectiveOutDirPath); // If user canceled open dialog, refuse to continue, because we will get permission denied error from MAS sandbox if (!newOutDir) return { cancel: true }; setCustomOutDir(newOutDir); newCustomOutDir = newOutDir; } else { errorToast(i18n.t('You have no write access to the directory of this file, please select a custom working dir')); setCustomOutDir(undefined); return { cancel: true }; } } return { cancel: false, newCustomOutDir }; }, [customOutDir, setCustomOutDir]); const mergeFiles = useCallback(async ({ paths, allStreams }) => { if (workingRef.current) return; try { setConcatDialogVisible(false); setWorking(i18n.t('Merging')); const firstPath = paths[0]; const { newCustomOutDir, cancel } = await ensureOutDirAccessible(firstPath); if (cancel) return; const ext = extname(firstPath); const outPath = getOutPath({ customOutDir: newCustomOutDir, filePath: firstPath, nameSuffix: `merged${ext}` }); const outDir = getOutDir(customOutDir, firstPath); let chaptersFromSegments; if (segmentsToChapters) { const chapterNames = paths.map((path) => parsePath(path).name); chaptersFromSegments = await createChaptersFromSegments({ segmentPaths: paths, chapterNames }); } // console.log('merge', paths); await ffmpegMergeFiles({ paths, outPath, outDir, allStreams, ffmpegExperimental, onProgress: setCutProgress, preserveMovData, movFastStart, preserveMetadataOnMerge, chapters: chaptersFromSegments }); openDirToast({ icon: 'success', dirPath: outDir, text: i18n.t('Files merged!') }); } catch (err) { if (isOutOfSpaceError(err)) { showDiskFull(); return; } errorToast(i18n.t('Failed to merge files. Make sure they are all of the exact same codecs')); console.error('Failed to merge files', err); } finally { setWorking(); setCutProgress(); } }, [setWorking, ensureOutDirAccessible, customOutDir, segmentsToChapters, ffmpegMergeFiles, ffmpegExperimental, preserveMovData, movFastStart, preserveMetadataOnMerge]); const onMergeFilesClick = useCallback(() => { if (batchFiles.length < 2) { errorToast(i18n.t('Please open at least 2 files to merge, then try again')); return; } setConcatDialogVisible(true); }, [batchFiles]); const toggleCaptureFormat = useCallback(() => setCaptureFormat(f => (f === 'png' ? 'jpeg' : 'png')), [setCaptureFormat]); const toggleKeyframeCut = useCallback((showMessage) => setKeyframeCut((val) => { const newVal = !val; if (showMessage && !hideAllNotifications) { if (newVal) toast.fire({ title: i18n.t('Keyframe cut enabled'), text: i18n.t('Will now cut at the nearest keyframe before the desired start cutpoint. This is recommended for most files.') }); else toast.fire({ title: i18n.t('Keyframe cut disabled'), text: i18n.t('Will now cut at the exact position, but may leave an empty portion at the beginning of the file. You may have to set the cutpoint a few frames before the next keyframe to achieve a precise cut'), timer: 7000 }); } return newVal; }), [hideAllNotifications, setKeyframeCut]); const togglePreserveMovData = useCallback(() => setPreserveMovData((val) => !val), [setPreserveMovData]); const toggleMovFastStart = useCallback(() => setMovFastStart((val) => !val), [setMovFastStart]); const toggleSimpleMode = useCallback(() => setSimpleMode((v) => { if (!hideAllNotifications) toast.fire({ text: v ? i18n.t('Advanced view has been enabled. You will now also see non-essential buttons and functions') : i18n.t('Advanced view disabled. You will now see only the most essential buttons and functions') }); return !v; }), [hideAllNotifications, setSimpleMode]); const isCopyingStreamId = useCallback((path, streamId) => ( !!(copyStreamIdsByFile[path] || {})[streamId] ), [copyStreamIdsByFile]); const copyAnyAudioTrack = useMemo(() => mainStreams.some(stream => isCopyingStreamId(filePath, stream.index) && stream.codec_type === 'audio'), [filePath, isCopyingStreamId, mainStreams]); const subtitleStreams = useMemo(() => mainStreams.filter((stream) => stream.codec_type === 'subtitle'), [mainStreams]); const activeSubtitle = useMemo(() => subtitlesByStreamId[activeSubtitleStreamIndex], [activeSubtitleStreamIndex, subtitlesByStreamId]); const onActiveSubtitleChange = useCallback(async (index) => { if (index == null) { setActiveSubtitleStreamIndex(); return; } if (subtitlesByStreamId[index]) { // Already loaded setActiveSubtitleStreamIndex(index); return; } const subtitleStream = index != null && subtitleStreams.find((s) => s.index === index); if (!subtitleStream || workingRef.current) return; try { setWorking(i18n.t('Loading subtitle')); const url = await extractSubtitleTrack(filePath, index); setSubtitlesByStreamId((old) => ({ ...old, [index]: { url, lang: subtitleStream.tags && subtitleStream.tags.language } })); setActiveSubtitleStreamIndex(index); } catch (err) { handleError(`Failed to extract subtitles for stream ${index}`, err.message); } finally { setWorking(); } }, [setWorking, subtitleStreams, subtitlesByStreamId, filePath]); // Streams that are not copy enabled by default const extraStreams = useMemo(() => mainStreams .filter((stream) => !defaultProcessedCodecTypes.includes(stream.codec_type)), [mainStreams]); // Extra streams that the user has not selected for copy const nonCopiedExtraStreams = useMemo(() => extraStreams .filter((stream) => !isCopyingStreamId(filePath, stream.index)), [extraStreams, filePath, isCopyingStreamId]); const exportExtraStreams = autoExportExtraStreams && nonCopiedExtraStreams.length > 0; const copyFileStreams = useMemo(() => Object.entries(copyStreamIdsByFile).map(([path, streamIdsMap]) => ({ path, streamIds: Object.keys(streamIdsMap).filter(index => streamIdsMap[index]), })), [copyStreamIdsByFile]); const numStreamsToCopy = copyFileStreams .reduce((acc, { streamIds }) => acc + streamIds.length, 0); const numStreamsTotal = [ ...mainStreams, ...flatMap(Object.values(externalStreamFiles), ({ streams }) => streams), ].length; const toggleStripAudio = useCallback(() => { setCopyStreamIdsForPath(filePath, (old) => { const newCopyStreamIds = { ...old }; mainStreams.forEach((stream) => { if (stream.codec_type === 'audio') newCopyStreamIds[stream.index] = !copyAnyAudioTrack; }); return newCopyStreamIds; }); }, [copyAnyAudioTrack, filePath, mainStreams, setCopyStreamIdsForPath]); const removeCutSegment = useCallback((index) => { if (cutSegments.length === 1 && cutSegments[0].start == null && cutSegments[0].end == null) return; // Initial segment if (cutSegments.length <= 1) { clearSegments(); return; } const cutSegmentsNew = [...cutSegments]; cutSegmentsNew.splice(index, 1); setCutSegments(cutSegmentsNew); }, [clearSegments, cutSegments, setCutSegments]); const thumnailsRef = useRef([]); const thumnailsRenderingPromiseRef = useRef(); function addThumbnail(thumbnail) { // console.log('Rendered thumbnail', thumbnail.url); setThumbnails(v => [...v, thumbnail]); } const [, cancelRenderThumbnails] = useDebounceOld(() => { async function renderThumbnails() { if (!thumbnailsEnabled || thumnailsRenderingPromiseRef.current) return; try { setThumbnails([]); const promise = ffmpegRenderThumbnails({ filePath, from: zoomWindowStartTime, duration: zoomedDuration, onThumbnail: addThumbnail }); thumnailsRenderingPromiseRef.current = promise; await promise; } catch (err) { console.error('Failed to render thumbnail', err); } finally { thumnailsRenderingPromiseRef.current = undefined; } } if (isDurationValid(zoomedDuration)) renderThumbnails(); }, 500, [zoomedDuration, filePath, zoomWindowStartTime, thumbnailsEnabled]); // Cleanup removed thumbnails useEffect(() => { thumnailsRef.current.forEach((thumbnail) => { if (!thumbnails.some(t => t.url === thumbnail.url)) URL.revokeObjectURL(thumbnail.url); }); thumnailsRef.current = thumbnails; }, [thumbnails]); // Cleanup removed subtitles const subtitlesByStreamIdRef = useRef({}); useEffect(() => { Object.values(thumnailsRef.current).forEach(({ url }) => { if (!Object.values(subtitlesByStreamId).some(t => t.url === url)) URL.revokeObjectURL(url); }); subtitlesByStreamIdRef.current = subtitlesByStreamId; }, [subtitlesByStreamId]); const hasAudio = !!mainAudioStream; const hasVideo = !!mainVideoStream; const shouldShowKeyframes = keyframesEnabled && !!mainVideoStream && calcShouldShowKeyframes(zoomedDuration); const shouldShowWaveform = calcShouldShowWaveform(zoomedDuration); const { neighbouringKeyFrames, findNearestKeyFrameTime } = useKeyframes({ keyframesEnabled, filePath, commandedTime, mainVideoStream, detectedFps, ffmpegExtractWindow }); const { waveforms } = useWaveform({ filePath, commandedTime, zoomedDuration, waveformEnabled, mainAudioStream, shouldShowWaveform, ffmpegExtractWindow }); const resetState = useCallback(() => { const video = videoRef.current; setCommandedTime(0); video.currentTime = 0; video.playbackRate = 1; batchedUpdates(() => { // setWorking(); setFileNameTitle(); setPreviewFilePath(); setUsingDummyVideo(false); setPlaying(false); setDuration(); cutSegmentsHistory.go(0); clearSegments(); // TODO this will cause two history items setCutStartTimeManual(); setCutEndTimeManual(); setFileFormat(); setFileFormatData(); setChapters(); setDetectedFileFormat(); setRotation(360); setCutProgress(); setStartTimeOffset(0); setFilePath(''); // Setting video src="" prevents memory leak in chromium setExternalStreamFiles([]); setCustomTagsByFile({}); setCustomTagsByStreamId({}); setDispositionByStreamId({}); setDetectedFps(); setMainStreams([]); setMainVideoStream(); setMainAudioStream(); setCopyStreamIdsByFile({}); setStreamsSelectorShown(false); setZoom(1); setThumbnails([]); setShortestFlag(false); setZoomWindowStartTime(0); setDisabledSegmentIds({}); setSubtitlesByStreamId({}); setActiveSubtitleStreamIndex(); setHideCanvasPreview(false); setExportConfirmVisible(false); cancelRenderThumbnails(); }); }, [cutSegmentsHistory, clearSegments, cancelRenderThumbnails]); const showUnsupportedFileMessage = useCallback(() => { if (!hideAllNotifications) toast.fire({ timer: 13000, text: i18n.t('File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview with audio.') }); }, [hideAllNotifications]); const showPreviewFileLoadedMessage = useCallback((fileName) => { if (!hideAllNotifications) toast.fire({ icon: 'info', text: i18n.t('Loaded existing preview file: {{ fileName }}', { fileName }) }); }, [hideAllNotifications]); const html5ifyAndLoad = useCallback(async (cod, fp, speed, hv, ha) => { const usesDummyVideo = ['fastest-audio', 'fastest-audio-remux', 'fastest'].includes(speed); console.log('html5ifyAndLoad', { speed, hasVideo: hv, hasAudio: ha, usesDummyVideo }); async function doHtml5ify() { if (speed == null) return undefined; if (speed === 'fastest') { const path = getOutPath({ customOutDir: cod, filePath: fp, nameSuffix: `${html5ifiedPrefix}${html5dummySuffix}.mkv` }); try { setCutProgress(0); await html5ifyDummy({ filePath: fp, outPath: path, onProgress: setCutProgress }); } finally { setCutProgress(); } return path; } try { const shouldIncludeVideo = !usesDummyVideo && hv; return await html5ify({ customOutDir: cod, filePath: fp, speed, hasAudio: ha, hasVideo: shouldIncludeVideo, onProgress: setCutProgress }); } finally { setCutProgress(); } } const path = await doHtml5ify(); if (!path) return; setPreviewFilePath(path); setUsingDummyVideo(usesDummyVideo); showUnsupportedFileMessage(); }, [html5ify, html5ifyDummy, showUnsupportedFileMessage]); const batchConvertFormat = useCallback(async () => { if (batchFiles.length < 1) return; const filePaths = batchFiles.map((f) => f.path); const failedFiles = []; let i = 0; const setTotalProgress = (fileProgress = 0) => setCutProgress((i + fileProgress) / filePaths.length); const { selectedOption: speed } = await askForHtml5ifySpeed({ allowedOptions: ['fastest-audio', 'fastest-audio-remux', 'fast-audio-remux', 'fast-audio', 'fast', 'slow', 'slow-audio', 'slowest'] }); if (!speed) return; if (workingRef.current) return; try { setWorking(i18n.t('Batch converting to supported format')); setCutProgress(0); // eslint-disable-next-line no-restricted-syntax for (const path of filePaths) { try { // eslint-disable-next-line no-await-in-loop const { newCustomOutDir, cancel } = await ensureOutDirAccessible(path); if (cancel) { toast.fire({ title: i18n.t('Aborted') }); return; } // eslint-disable-next-line no-await-in-loop await html5ify({ customOutDir: newCustomOutDir, filePath: path, speed, hasAudio: true, hasVideo: true, onProgress: setTotalProgress }); } catch (err2) { console.error('Failed to html5ify', path, err2); failedFiles.push(path); } i += 1; setTotalProgress(); } if (failedFiles.length > 0) toast.fire({ title: `${i18n.t('Failed to convert files:')} ${failedFiles.join(' ')}`, timer: null, showConfirmButton: true }); } catch (err) { errorToast(i18n.t('Failed to batch convert to supported format')); console.error('Failed to html5ify', err); } finally { setWorking(); setCutProgress(); } }, [batchFiles, ensureOutDirAccessible, html5ify, setWorking]); const getConvertToSupportedFormat = useCallback((fallback) => rememberConvertToSupportedFormat || fallback, [rememberConvertToSupportedFormat]); const html5ifyAndLoadWithPreferences = useCallback(async (cod, fp, speed, hv, ha) => { if (!enableAutoHtml5ify) return; setWorking(i18n.t('Converting to supported format')); await html5ifyAndLoad(cod, fp, getConvertToSupportedFormat(speed), hv, ha); }, [enableAutoHtml5ify, setWorking, html5ifyAndLoad, getConvertToSupportedFormat]); const showPlaybackFailedMessage = () => errorToast(i18n.t('Unable to playback this file. Try to convert to supported format from the menu')); const togglePlay = useCallback((resetPlaybackRate) => { if (!filePath) return; const video = videoRef.current; if (playing) { video.pause(); return; } if (resetPlaybackRate) video.playbackRate = 1; video.play().catch((err) => { showPlaybackFailedMessage(); console.error(err); }); }, [playing, filePath]); const closeFileWithConfirm = useCallback(() => { if (!isFileOpened || workingRef.current) return; // eslint-disable-next-line no-alert if (askBeforeClose && !window.confirm(i18n.t('Are you sure you want to close the current file?'))) return; resetState(); }, [askBeforeClose, resetState, isFileOpened]); const closeBatch = useCallback(() => { // eslint-disable-next-line no-alert if (askBeforeClose && !window.confirm(i18n.t('Are you sure you want to close the loaded batch of files?'))) return; setBatchFiles([]); }, [askBeforeClose]); const removeBatchFile = useCallback((path) => setBatchFiles((existingBatch) => existingBatch.filter((existingFile) => existingFile.path !== path)), []); const cleanupFiles = useCallback(async () => { if (!isFileOpened) return; let trashResponse = cleanupChoices; if (!cleanupChoices.dontShowAgain) { trashResponse = await cleanupFilesDialog(cleanupChoices); console.log('trashResponse', trashResponse); if (!trashResponse) return; // Cancelled setCleanupChoices(trashResponse); // Store for next time } if (workingRef.current) return; // Because we will reset state before deleting files const savedPaths = { previewFilePath, filePath, edlFilePath }; resetState(); removeBatchFile(savedPaths.filePath); if (!trashResponse.tmpFiles && !trashResponse.projectFile && !trashResponse.sourceFile) return; try { setWorking(i18n.t('Cleaning up')); console.log('trashing', trashResponse); await deleteFiles({ toDelete: trashResponse, paths: savedPaths }); } catch (err) { errorToast(i18n.t('Unable to delete file: {{message}}', { message: err.message })); console.error(err); } finally { setWorking(); } }, [previewFilePath, filePath, edlFilePath, cleanupChoices, isFileOpened, resetState, removeBatchFile, setWorking]); const inverseOrNormalSegments = useMemo(() => (invertCutSegments ? inverseCutSegments : apparentCutSegments), [invertCutSegments, inverseCutSegments, apparentCutSegments]); const enabledSegmentsRaw = useMemo(() => { // For invertCutSegments we do not support filtering if (invertCutSegments) return inverseCutSegments; return apparentCutSegments.filter((s) => !disabledSegmentIds[s.segId]); }, [invertCutSegments, inverseCutSegments, apparentCutSegments, disabledSegmentIds]); // If user has selected none to export, it makes no sense, so export all instead const enabledSegments = enabledSegmentsRaw.length > 0 ? enabledSegmentsRaw : inverseOrNormalSegments; const onExportSingleSegmentClick = useCallback((activeSeg) => setDisabledSegmentIds(Object.fromEntries(cutSegments.filter((s) => s.segId !== activeSeg.segId).map((s) => [s.segId, true]))), [cutSegments]); const onExportSegmentEnabledToggle = useCallback((toggleSeg) => setDisabledSegmentIds((existing) => ({ ...existing, [toggleSeg.segId]: !existing[toggleSeg.segId] })), []); const onExportSegmentDisableAll = useCallback(() => setDisabledSegmentIds(Object.fromEntries(cutSegments.map((s) => [s.segId, true]))), [cutSegments]); const onExportSegmentEnableAll = useCallback(() => setDisabledSegmentIds({}), []); const filenamifyOrNot = useCallback((name) => (safeOutputFileName ? filenamify(name) : name).substr(0, maxLabelLength), [safeOutputFileName, maxLabelLength]); const segmentsToExport = useMemo(() => { // This is a special mode where all segments will be simply written out as chapters to one file: https://github.com/mifi/lossless-cut/issues/993#issuecomment-1037927595 if (!segmentsToChaptersOnly) return enabledSegments; // Chapters export mode: Emulate a single segment with no cuts (full timeline) return [{ start: 0, end: getSegApparentEnd({}) }]; }, [enabledSegments, getSegApparentEnd, segmentsToChaptersOnly]); const areWeCutting = useMemo(() => segmentsToExport.some(({ start, end }) => isCuttingStart(start) || isCuttingEnd(end, duration)), [duration, segmentsToExport]); const generateOutSegFileNames = useCallback(({ segments = segmentsToExport, template }) => ( segments.map((segment, i) => { const { start, end, name = '' } = segment; const cutFromStr = formatDuration({ seconds: start, fileNameFriendly: true }); const cutToStr = formatDuration({ seconds: end, fileNameFriendly: true }); const segNum = i + 1; // https://github.com/mifi/lossless-cut/issues/583 let segSuffix = ''; if (name) segSuffix = `-${filenamifyOrNot(name)}`; else if (segments.length > 1) segSuffix = `-seg${segNum}`; const ext = getOutFileExtension({ isCustomFormatSelected, outFormat: fileFormat, filePath }); const { name: fileNameWithoutExt } = parsePath(filePath); // Fields that did not come from the source file's name must be sanitized, because they may contain characters that are not supported by the target operating/file system const tagsSanitized = Object.fromEntries(Object.entries(getSegmentTags(segment)).map(([tag, value]) => [tag, filenamifyOrNot(value)])); const nameSanitized = filenamifyOrNot(name); const generated = generateSegFileName({ template, segSuffix, inputFileNameWithoutExt: fileNameWithoutExt, ext, segNum, segLabel: nameSanitized, cutFrom: cutFromStr, cutTo: cutToStr, tags: tagsSanitized }); return safeOutputFileName ? generated.substring(0, 200) : generated; // If sanitation is enabled, make sure filename is not too long }) ), [segmentsToExport, filenamifyOrNot, isCustomFormatSelected, fileFormat, filePath, safeOutputFileName]); const getOutSegError = useCallback((fileNames) => getOutSegErrorRaw({ fileNames, filePath, outputDir }), [outputDir, filePath]); const openSendReportDialogWithState = useCallback(async (err) => { const state = { filePath, fileFormat, externalStreamFiles, mainStreams, copyStreamIdsByFile, cutSegments: cutSegments.map(s => ({ start: s.start, end: s.end })), fileFormatData, rotation, shortestFlag, }; openSendReportDialog(err, state); }, [copyStreamIdsByFile, cutSegments, externalStreamFiles, fileFormat, fileFormatData, filePath, mainStreams, rotation, shortestFlag]); const handleCutFailed = useCallback(async (err) => { const sendErrorReport = await showCutFailedDialog({ detectedFileFormat }); if (sendErrorReport) openSendReportDialogWithState(err); }, [openSendReportDialogWithState, detectedFileFormat]); const closeExportConfirm = useCallback(() => setExportConfirmVisible(false), []); const willMerge = segmentsToExport.length > 1 && autoMerge; const onExportConfirm = useCallback(async () => { if (numStreamsToCopy === 0) { errorToast(i18n.t('No tracks selected for export')); return; } setStreamsSelectorShown(false); setExportConfirmVisible(false); if (workingRef.current) return; try { setWorking(i18n.t('Exporting')); // Special segments-to-chapters mode: const chaptersToAdd = segmentsToChaptersOnly && sortBy(enabledSegments, 'start').map((segment) => ({ start: segment.start, end: segment.end, name: segment.name })); console.log('outSegTemplateOrDefault', outSegTemplateOrDefault); let outSegFileNames = generateOutSegFileNames({ segments: segmentsToExport, template: outSegTemplateOrDefault }); if (getOutSegError(outSegFileNames) != null) { console.error('Output segments file name invalid, using default instead', outSegFileNames); outSegFileNames = generateOutSegFileNames({ segments: segmentsToExport, template: defaultOutSegTemplate }); } // throw (() => { const err = new Error('test'); err.code = 'ENOENT'; return err; })(); const outFiles = await cutMultiple({ outputDir, outFormat: fileFormat, videoDuration: duration, rotation: isRotationSet ? effectiveRotation : undefined, copyFileStreams, keyframeCut, segments: segmentsToExport, segmentsFileNames: outSegFileNames, onProgress: setCutProgress, appendFfmpegCommandLog, shortestFlag, ffmpegExperimental, preserveMovData, movFastStart, avoidNegativeTs, customTagsByFile, customTagsByStreamId, dispositionByStreamId, chapters: chaptersToAdd, }); if (willMerge) { setCutProgress(0); setWorking(i18n.t('Merging')); const chapterNames = segmentsToChapters && !invertCutSegments ? segmentsToExport.map((s) => s.name) : undefined; await autoMergeSegments({ customOutDir, outFormat: fileFormat, isCustomFormatSelected, segmentPaths: outFiles, ffmpegExperimental, preserveMovData, movFastStart, onProgress: setCutProgress, chapterNames, autoDeleteMergedSegments, preserveMetadataOnMerge, }); } const msgs = [i18n.t('Done! Note: cutpoints may be inaccurate. Make sure you test the output files in your desired player/editor before you delete the source. If output does not look right, see the HELP page.')]; // https://github.com/mifi/lossless-cut/issues/329 if (isIphoneHevc(fileFormatData, mainStreams)) msgs.push(i18n.t('There is a known issue with cutting iPhone HEVC videos. The output file may not work in all players.')); if (exportExtraStreams) { try { await extractStreams({ filePath, customOutDir, streams: nonCopiedExtraStreams }); msgs.push(i18n.t('Unprocessable streams were exported as separate files.')); } catch (err) { console.error('Extra stream export failed', err); } } if (!hideAllNotifications) openDirToast({ dirPath: outputDir, text: msgs.join(' '), timer: 15000 }); } catch (err) { console.error('stdout:', err.stdout); console.error('stderr:', err.stderr); if (err.exitCode === 1 || err.code === 'ENOENT') { if (isOutOfSpaceError(err)) { showDiskFull(); return; } handleCutFailed(err); return; } handleError(err); } finally { setWorking(); setCutProgress(); } }, [numStreamsToCopy, setWorking, segmentsToChaptersOnly, enabledSegments, outSegTemplateOrDefault, generateOutSegFileNames, segmentsToExport, getOutSegError, cutMultiple, outputDir, fileFormat, duration, isRotationSet, effectiveRotation, copyFileStreams, keyframeCut, shortestFlag, ffmpegExperimental, preserveMovData, movFastStart, avoidNegativeTs, customTagsByFile, customTagsByStreamId, dispositionByStreamId, willMerge, fileFormatData, mainStreams, exportExtraStreams, hideAllNotifications, segmentsToChapters, invertCutSegments, autoMergeSegments, customOutDir, isCustomFormatSelected, autoDeleteMergedSegments, preserveMetadataOnMerge, filePath, nonCopiedExtraStreams, handleCutFailed]); const onExportPress = useCallback(async () => { if (!filePath || workingRef.current) return; if (haveInvalidSegs) { errorToast(i18n.t('Start time must be before end time')); return; } if (segmentsToExport.length < 1) { errorToast(i18n.t('No segments to export')); return; } if (exportConfirmEnabled) setExportConfirmVisible(true); else await onExportConfirm(); }, [filePath, haveInvalidSegs, segmentsToExport, exportConfirmEnabled, onExportConfirm]); const capture = useCallback(async () => { if (!filePath) return; try { const currentTime = getCurrentTime(); const video = videoRef.current; const outPath = previewFilePath ? await captureFrameFfmpeg({ customOutDir, filePath, currentTime, captureFormat, enableTransferTimestamps }) : await captureFrameFromTag({ customOutDir, filePath, currentTime, captureFormat, video, enableTransferTimestamps }); if (!hideAllNotifications) openDirToast({ dirPath: outputDir, text: `${i18n.t('Screenshot captured to:')} ${outPath}` }); } catch (err) { console.error(err); errorToast(i18n.t('Failed to capture frame')); } }, [filePath, getCurrentTime, previewFilePath, customOutDir, captureFormat, enableTransferTimestamps, hideAllNotifications, outputDir]); const changePlaybackRate = useCallback((dir, rateMultiplier) => { if (canvasPlayerEnabled) { toast.fire({ title: i18n.t('Unable to change playback rate right now'), timer: 1000 }); return; } const video = videoRef.current; if (!playing) { video.play(); } else { const newRate = adjustRate(video.playbackRate, dir, rateMultiplier); toast.fire({ title: `${i18n.t('Playback rate:')} ${Math.round(newRate * 100)}%`, timer: 1000 }); video.playbackRate = newRate; } }, [playing, canvasPlayerEnabled]); const segmentAtCursor = useMemo(() => { const segmentsAtCursorIndexes = findSegmentsAtCursor(apparentCutSegments, commandedTime); const firstSegmentAtCursorIndex = segmentsAtCursorIndexes[0]; return cutSegments[firstSegmentAtCursorIndex]; }, [apparentCutSegments, commandedTime, cutSegments]); const splitCurrentSegment = useCallback(() => { const currentTime = getCurrentTime(); const segmentsAtCursorIndexes = findSegmentsAtCursor(apparentCutSegments, currentTime); if (segmentsAtCursorIndexes.length === 0) { errorToast(i18n.t('No segment to split. Please move cursor over the segment you want to split')); return; } const firstSegmentAtCursorIndex = segmentsAtCursorIndexes[0]; const segment = cutSegments[firstSegmentAtCursorIndex]; const getNewName = (oldName, suffix) => oldName && `${segment.name} ${suffix}`; const firstPart = createIndexedSegment({ segment: { name: getNewName(segment.name, '1'), start: segment.start, end: currentTime }, incrementCount: true }); const secondPart = createIndexedSegment({ segment: { name: getNewName(segment.name, '2'), start: currentTime, end: segment.end }, incrementCount: true }); const newSegments = [...cutSegments]; newSegments.splice(firstSegmentAtCursorIndex, 1, firstPart, secondPart); setCutSegments(newSegments); }, [apparentCutSegments, createIndexedSegment, cutSegments, getCurrentTime, setCutSegments]); const loadCutSegments = useCallback((edl, append = false) => { const validEdl = edl.filter((row) => ( (row.start === undefined || row.end === undefined || row.start < row.end) && (row.start === undefined || row.start >= 0) // TODO: Cannot do this because duration is not yet set when loading a file // && (row.start === undefined || (row.start >= 0 && row.start < duration)) // && (row.end === undefined || row.end < duration) )); if (validEdl.length === 0) throw new Error(i18n.t('No valid segments found')); if (!append) { clearSegCounter(); } setCutSegments((existingSegments) => { const newSegments = validEdl.map((segment) => createIndexedSegment({ segment, incrementCount: true })); if (append && existingSegments.length > 1) return [...existingSegments, ...newSegments]; return newSegments; }); }, [clearSegCounter, createIndexedSegment, setCutSegments]); const loadEdlFile = useCallback(async ({ path, type, append }) => { console.log('Loading EDL file', type, path, append); loadCutSegments(await readEdlFile({ type, path }), append); }, [loadCutSegments]); const loadMedia = useCallback(async ({ filePath: fp, customOutDir: cod, projectPath }) => { console.log('loadMedia', fp, cod, projectPath); resetState(); console.log('state reset'); setWorking(i18n.t('Loading file')); async function checkAndSetExistingHtml5FriendlyFile() { const res = await findExistingHtml5FriendlyFile(fp, cod); if (!res) return false; console.log('Found existing supported file', res.path); setUsingDummyVideo(res.usingDummyVideo); setPreviewFilePath(res.path); showPreviewFileLoadedMessage(basename(res.path)); return true; } try { const { fileFormat: ff, formatData: fd, chapters: ch, streams } = await readFileMeta(fp); // console.log('file meta read', ff); if (!ff) throw new Error('Unable to determine file format'); const timecode = autoLoadTimecode ? getTimecodeFromStreams(streams) : undefined; const videoStreams = getVideoStreams(streams); const audioStreams = getAudioStreams(streams); const videoStream = videoStreams[0]; const audioStream = audioStreams[0]; const haveVideoStream = !!videoStream; const haveAudioStream = !!audioStream; const detectedFpsNew = haveVideoStream ? getStreamFps(videoStream) : undefined; const shouldCopyStreamByDefault = (stream) => { if (!defaultProcessedCodecTypes.includes(stream.codec_type)) return false; // Don't enable thumbnail stream by default if we have a main video stream // It's been known to cause issues: https://github.com/mifi/lossless-cut/issues/308 if (haveVideoStream && isStreamThumbnail(stream)) return false; return true; }; const copyStreamIdsForPathNew = fromPairs(streams.map((stream) => [ stream.index, shouldCopyStreamByDefault(stream), ])); if (timecode) setStartTimeOffset(timecode); if (detectedFpsNew != null) setDetectedFps(detectedFpsNew); if (isAudioDefinitelyNotSupported(streams)) { toast.fire({ icon: 'info', text: i18n.t('The audio track is not supported. You can convert to a supported format from the menu') }); } const validDuration = isDurationValid(parseFloat(fd.duration)); const hasLoadedExistingHtml5FriendlyFile = await checkAndSetExistingHtml5FriendlyFile(); // 'fastest' works with almost all video files if (!hasLoadedExistingHtml5FriendlyFile && !doesPlayerSupportFile(streams) && validDuration) { await html5ifyAndLoadWithPreferences(cod, fp, 'fastest', haveVideoStream, haveAudioStream); } try { const openedFileEdlPath = getEdlFilePath(fp); const openedFileEdlPathOld = getEdlFilePathOld(fp); if (projectPath) { await loadEdlFile({ path: projectPath, type: 'llc' }); } else if (await exists(openedFileEdlPath)) { await loadEdlFile({ path: openedFileEdlPath, type: 'llc' }); } else if (await exists(openedFileEdlPathOld)) { await loadEdlFile({ path: openedFileEdlPathOld, type: 'csv' }); } else { const edl = await tryMapChaptersToEdl(ch); if (edl.length > 0 && enableAskForImportChapters && (await askForImportChapters())) { console.log('Convert chapters to segments', edl); loadCutSegments(edl); } } } catch (err) { console.error('EDL load failed, but continuing', err); errorToast(`${i18n.t('Failed to load segments')} (${err.message})`); } // throw new Error('test'); if (!validDuration) toast.fire({ icon: 'warning', timer: 10000, text: i18n.t('This file does not have a valid duration. This may cause issues. You can try to fix the file\'s duration from the File menu') }); batchedUpdates(() => { setMainStreams(streams); setMainVideoStream(videoStream); setMainAudioStream(audioStream); setCopyStreamIdsForPath(fp, () => copyStreamIdsForPathNew); setFileNameTitle(fp); setFileFormat(outFormatLocked || ff); setDetectedFileFormat(ff); setFileFormatData(fd); setChapters(ch); // This needs to be last, because it triggers