A video library made in C++ using file handling. Features include playing videos, adding videos, and deleting videos.
- Change the path for media player on line 72 of video_library.cpp
- Files for lists will be automatically generated in the includes/data/ folder.
- Playing videos
- Adding videos
- Deleting videos
- File handling
- Properly commented code for better understanding
- Object oriented C++
- Do not add videos with paths which include spaces. This can be fixed by using getline() function instead of simple cin.
- Delete video which is at the bottom of the list. Deleting a video in middle or start of the list can cause errors. This is because of linear file handling. Can be fixed if looked into properly.