FFMpegCore icon indicating copy to clipboard operation
FFMpegCore copied to clipboard

ThrowIfInputFileDoesNotExist when HTTP source is used

Open MosheL opened this issue 2 years ago • 1 comments

Hi

I am using FFMpeg with S3 storage (not the original, but compatible).

I am receiving

  FFMpegException: No file found at 'https://s3.server/bucket/1.mp4'

The file is readable via simple HTTP and when I am testing with ffmpeg commandline its working

$ ffmpeg -i https://s3.server/bucket/1.mp4 -ss 0:0:05 -frames:v 1 output.jpg

The ThrowIfInputFileDoesNotExist need to be disabled if the original path taken from the network and not from FileSystem.

Thanks for all

MosheL avatar Nov 22 '23 21:11 MosheL

Having the same issue.

ryno1234 avatar May 18 '24 18:05 ryno1234

Have you tried using FromUrlInput instead of FromFileInput?

rosenbjerg avatar Dec 05 '24 09:12 rosenbjerg

You could also have solved it be passing false to verifyExists parameter of FromFileInput if you insist on using that one

rosenbjerg avatar Dec 05 '24 09:12 rosenbjerg

@rosenbjerg Its working in the last version (in the past I tried and it was broken). Nice.

Thanks !!

MosheL avatar Dec 05 '24 15:12 MosheL