How Linux accesses locally specified disk files.

Linux can or how to access locally specified disk files?
for example, my disk address is at\ 10.99.1.33\ Special effects\ Video\ a.mp4
how to access it in Linux

I use FFmpeg to capture video images. Run the command:
ffmpeg-I\\ 10.99.1.33\ Special effects\ Video\ a.mp4-r 1-s 950x520-f image2 a.jpg

is fine on win7, but it is always prompted on Linux that there is no such file or folder

Sep.16,2021

linux\ will be recognized as the escape symbol
and change to the following command line to execute the next try.

ffmpeg -i \\\\10.99.1.33\\\\\\a.mp4 -r 1 -s 950x520 -f image2 a.jpg

ip address plus disk path this is the network address.
you can use it on win7. You should have shared the directory where the file is located.
in linux, you need to share through Samba, or through nfs.

Menu