Hello!
This string works good:
VideoWriter * writer = new VideoWriter("D:\video\film.avi", codec, frame_rate, Size(width, height), true);
This string throws exception "Access violation reading location":
VideoWriter * writer = new VideoWriter("D:\Видео\film.avi", codec, frame_rate, Size(width, height), true);
What is the problem? Thank you :)