Please help me out in this problem
Use of this program:
find duration of a video and audio
code :
loc="/e/[Content Creation]/audio_section_working/1.mp3"
echo $(ffprobe -v error -show_entries format=duration /
-of default=noprint_wrappers=1:nokey=1 $loc )
error :
Argument 'Creation]/audio_section_working/1.mp3' provided as input filename, but '/e/[Content' was already specified.
working earlier when no path was given , when i have done git bash on the same directory in which the file was located :
echo $(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "1.mp3" )
[ as u can see when i am giving path of file to find duration it is giving me error] [ giving direct path i.e. "1.mp3" is not giving me error ] [ giving file location path is giving error , why ? ]