The problem of passing file names with spaces is why i never create a file with a space, i use underscores. Old habit from decades ago.
ffmpeg -i "2015 Stars.mp4"
ffmpeg -i "2015_Stars.mp4"
ffmpeg -i 2015_Stars.mp4
all will work without errors. Note the last entry doesn't need quotes
If you have spaces, always wrap with quotes. It is a standard thing in DOS cmd windows, but most people are not typing CMD commands.
sorry that it was confusing.