You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cases where the (start) timestamps of two files are not aligned should be handled better. Possible default strategies could be:
1 Automatically set frameoffset so that the starting frames of both videos align
2 Fast forward to the first timestamp that are present in both files
3 Combination of the above, ie use strategy 2 if possible, otherwise 1
I use a workaround :
The start timestamps of two ts-files (or other) will be set to = 0, and a new container "mp4" will be used. To minimize the conversion time, only the first 10 min. will be converted, after all, vivictpp will be started with new generated files.
Only two files are in the directory.
The script :
`#!/bin/bash
declare -a new_videos
while IFS= read -r -d $'\0' video
do
filename=$(basename -- "$video")
filename="${filename%.*}"
Cases where the (start) timestamps of two files are not aligned should be handled better. Possible default strategies could be:
1 Automatically set frameoffset so that the starting frames of both videos align
2 Fast forward to the first timestamp that are present in both files
3 Combination of the above, ie use strategy 2 if possible, otherwise 1
See also #67
The text was updated successfully, but these errors were encountered: