Etiquette, expectations, entitlement...@autoexec_bin | #magiclantern | Discord | Reddit | Server issues
Works fine here. You're right clicking on a folder not an MLV file right?
Did you by any chance refresh the web browser after selecting "DaVinci Resolve" checkbox within MLVFS's web guide yet?
The log file is completely empty. Best if you upload the MLV file. If it,s too long just film a shorter sample and check if that also isn,t working before sharing it.
There is no audio recorded. There is a zero byte wav file in mlvfs and when processed in mlv_dump there is no audio file at all. Did you set mlv_snd to on? Anyway, that,s probably your problem.
static int get_mlv_basename(const char *path, char ** mlv_basename){ if(!(string_ends_with(path, ".MLV") || string_ends_with(path, ".mlv"))) return 0; char *temp = copy_string(path); const char *start = find_last_separator(temp) ? find_last_separator(temp) + 1 : temp; char *dot = strrchr(start, '.'); if(dot == NULL) { free(temp); return 0; } *dot = '\0'; struct frame_headers frame_headers; if(mlvfs.name_scheme == 1 && mlv_get_frame_headers(path, 0, &frame_headers)) { *mlv_basename = malloc(sizeof(char) * (strlen(start) + 1024)); sprintf(*mlv_basename, "%s%s_1_%d-%02d-%02d_%04d_C%04d", start, dot + 1, 1900 + frame_headers.rtci_hdr.tm_year, frame_headers.rtci_hdr.tm_mon + 1, frame_headers.rtci_hdr.tm_mday, 1, 0); } else { *mlv_basename = copy_string(start); } free(temp); return 1;}
and for the life of me couldn't figure it out.
You can't rename virtual files.