So I'm working on something I call ffconcat, a script intended to create multiple fixed files with altered timestamps so as to prevent timestamp errors before they happen, and then concat the files, removing the temporary files afterward. It all works via drag and drop. I have just 2 things left to work on before the script is done. Second part is easy, probably, but this first step is causing issues. The first part of my script is meant to generate a list of the files being drag/dropped with absolute paths. That seemed like a good idea at the time, but after realizing I had to first create the temporary files to fix timestamps and concat them instead, well that changes things. So, I want to change it from absolute paths to relative paths, but I'm having trouble. If I can just truncate the output list file so it only shows names, then add text to indicate a new relative path pointing at an output folder (ex. file 'C:\file1.mkv' > 'file1.mkv' > 'Output\file1.mkv') then I could put the new files created with -c copy and use them in the concat process instead. Anyway, here is my script, or at least here are the relevant lines:
@echo off setlocal enabledelayedexpansion
echo. > "%~dp0Concat1.txt"
for %%A in (%*) do ( echo file '%%~A'>> "%~dp0Concat1.txt" )
+ Reply to Thread
Results 1 to 3 of 3
-
-
You mean you want this?
Code:@echo off setlocal enabledelayedexpansion echo. > "%~dp0Concat1.txt" for %%A in (%*) do ( echo file '%%~nxA'>> "%~dp0Concat1.txt" )
-
Similar Threads
-
[SCRIPT] MakeMKV Batch Remuxer
By ElegantRain in forum DVD RippingReplies: 2Last Post: 20th Aug 2024, 19:30 -
batch create concat list for ffmpeg by the drag and drop of any files?
By marcorocchini in forum Newbie / General discussionsReplies: 0Last Post: 11th Aug 2022, 09:05 -
Looking for Batch MP4 Normalization Script of existing script
By VideoFanatic in forum Video ConversionReplies: 6Last Post: 31st Jul 2021, 19:50 -
Need Batch script help to prevent it asking for a language
By VideoFanatic in forum Video ConversionReplies: 0Last Post: 20th Dec 2019, 19:45 -
Batch Script for Youtube-dl
By syalazar in forum Video Streaming DownloadingReplies: 1Last Post: 5th Feb 2019, 10:10