![]() |
save video frames into pandas data-frame - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Data Science (https://python-forum.io/forum-44.html) +--- Thread: save video frames into pandas data-frame (/thread-13514.html) |
save video frames into pandas data-frame - tofi - Oct-18-2018 HI I have video files in three directories (Train , Development , Test ) and there is a .csv file contains info about each video subject label, gender and age. the videos are different in length with the shortest video has (52 seconds) . I need : 1. Use 52 seconds as a baseline to segment all videos into chunks of 52 seconds. 2. save each video frames and related info from the csv file into one pandas dataframe (flow_from_dataframe() ) is that can be done ? Thanks for help |