I tried converting a file on my "E:\" drive from my "C:\" drive (where FFmpeg is installed) using this command:
C:\>ffmpeg -i E:\Video\inputFileName.vob -codec copy outPutFileName.m2ts
I get this error:
E:\Video\inputFileName: No such file or directory
Do I have a syntax error, or do I need to have FFmpeg installed in the same directory as the video files I wish to convert?
+ Reply to Thread
Results 1 to 2 of 2
-
Last edited by Spica66; 29th Mar 2018 at 09:53.
-
No, you can use any directory to read, but to write you must have permissions (some directories like "C:" may require admin access to write)
But reading from C, writing to E should be OK . The way you have it, you are reading from "E" , writing to "C".
I get this error:
E:\Video\inputFileName: No such file or directory
Code:ffmpeg -i "E:\Video\inputFileName.vob" -codec copy "C:\outPutFileName.m2ts"
Last edited by poisondeathray; 29th Mar 2018 at 10:02.
Similar Threads
-
How to batch convert/multiplex any files with ffmpeg
By Baldrick in forum User guidesReplies: 215Last Post: 1st Dec 2023, 11:38 -
Easy265File - Preview ffmpeg command and easly convert multipe files
By gil900 in forum Video ConversionReplies: 1Last Post: 9th Jun 2017, 04:25 -
Need help with ffmpeg script to batch convert audio in MKV files
By mikeveli20 in forum AudioReplies: 5Last Post: 18th Nov 2016, 13:21 -
Using FFMPEG how do I convert an entire folder of webm files to wav or mp3?
By alphainventions in forum Video ConversionReplies: 1Last Post: 7th Aug 2016, 19:56 -
Joining Multiple Files in same directory
By viperpiper in forum EditingReplies: 8Last Post: 18th Dec 2013, 19:31