Search found 36 matches

by Conniver
Wed Jan 24, 2024 1:55 pm
Forum: Usage, tips and tricks
Topic: ffprobe, media info resource usage?
Replies: 3
Views: 2017

Re: ffprobe, media info resource usage?

Thanks. My workflow need ffprobe atleast twice, once for the original, and another for the generated proxy. Been having problem with longer videos not generating full length proxy file, and ffmpeg does not give an error. So now i do a "manual" duration check at the end. https://i.ibb.co/4p...
by Conniver
Wed Jan 24, 2024 11:22 am
Forum: Usage, tips and tricks
Topic: ffprobe, media info resource usage?
Replies: 3
Views: 2017

ffprobe, media info resource usage?

I just wondered, when using data from e.g. %s_info_ffprobe%, does it store this data in the temp cache folder? And the next time you need some data form %s_info_ffprobe% it will retrieve from cache (in the same workflow) ? Or does it run ffprobe every time?
by Conniver
Fri Aug 25, 2023 1:19 pm
Forum: Usage, tips and tricks
Topic: Problem with DJI files, 50fps and tc issues.
Replies: 4
Views: 2012

Re: Problem with DJI files, 50fps and tc issues.

So at this point the only problem I have is that the timecodes does not match, I get a h264 file from both the "custom" and internal h264 encoder. Custom: "%s_ffmpeg%" -i "%s_source%" -movflags use_metadata_tags -movflags +faststart -map 0:V -map_metadata 0 -sn -s %s_c_...
by Conniver
Wed Aug 23, 2023 1:14 pm
Forum: Usage, tips and tricks
Topic: Problem with DJI files, 50fps and tc issues.
Replies: 4
Views: 2012

Problem with DJI files, 50fps and tc issues.

I have a generic proxy workflow, that for some reason wont work with DJI 50fps footage, in this case Ronin 4D. The timecode is slightly off, enough for it not to work as a proxy (as Davinci Resolve won't recognize it as a proxy) So the problem is in the DJI RONIN 4D footage, but I need some assistan...
by Conniver
Sun Feb 12, 2023 9:55 pm
Forum: Usage, tips and tricks
Topic: OpenAi whisper transcription workflow.
Replies: 17
Views: 9572

Re: OpenAi whisper transcription workflow.

I can't get it to work, I have the path to both Python, and Python\Scripts (where whisper is located) in System Variables. whisper have an whisper.exe file in Python\Scripts, but running this does not work, it runs, but not as intended. Process exited with error code: 1 (Traceback (most recent call ...
by Conniver
Sat Feb 11, 2023 8:35 pm
Forum: Usage, tips and tricks
Topic: OpenAi whisper transcription workflow.
Replies: 17
Views: 9572

OpenAi whisper transcription workflow.

I'm trying to make a workflow to transcribe videos, and generate a srt. Made a Command executor to run whisper, but it never executes whisper. Tried two different inputs to the Command executor %comspec% /C "whisper "%s_source%" --model tiny --language no --output_format srt" wit...
by Conniver
Sat Feb 11, 2023 12:26 am
Forum: Usage, tips and tricks
Topic: Detect 1 sec black at the end of files
Replies: 6
Views: 3239

Re: Detect 1 sec black at the end of files

Is there any example workflows or resources where I can find info about checking tech specs with the tools available to FFastrans?
I've managed to create a decent proxy generating workflow (thanks emcodem), and next on the list is a QC / tech spec workflow.
by Conniver
Fri Jan 27, 2023 9:32 am
Forum: Usage, tips and tricks
Topic: Only encode files within specific folders in a workfolder.
Replies: 8
Views: 3045

Re: Only encode files within specific folders in a workfolder.

I'm very interested in learning xml parsing. I really want to extract the locations of footage used in XML exported from editing, and use this data to download the footage from Dropbox through the API. But that is for a future project.
by Conniver
Thu Jan 26, 2023 10:44 pm
Forum: Usage, tips and tricks
Topic: Camera footage with multi track audio
Replies: 19
Views: 6536

Re: Camera footage with multi track audio

I found a patch for nvidia consumer cards, that removes the max 2 job parallel limit.

https://github.com/keylase/nvidia-patch/tree/master/win

If anyone is interested.
by Conniver
Thu Jan 26, 2023 10:35 pm
Forum: Usage, tips and tricks
Topic: Can conditional check if folder exist?
Replies: 9
Views: 3235

Re: Can conditional check if folder exist?

I fixed the problem where it tried to create the same folder twice. I just added an extra check if the folder exist, before creating the folder. first Command executor node, to just check if it exist. %comspec% /C "IF EXIST "%s_original_path%\Proxy\*" (EXIT /B 0) ELSE (EXIT /B 1)"...