alex <zimin.a...@gmail.com> added the comment:

Looks like filename portion will be properly handled, if the following two 
lines 
are updated in rtmpproto.c file

Line 839
FROM: char *p = strchr(path + 1, '/');
TO: char *p = strrchr(path + 1, '/');
Line 845
FROM: fname = strchr(p + 1, '/');
TO: fname = strrchr(p + 1, '/');

Difference is finding last slash '/' vs. first one. Filename should be the last 
part of the path, after the last '/'.

I will try to compile ffmpeg from source in the next few days to see, if it 
solves the issue.

________________________________________________
FFmpeg issue tracker <iss...@roundup.ffmpeg.org>
<https://roundup.ffmpeg.org/issue1874>
________________________________________________

Reply via email to