c++ - How to play multiple videos from one file? -


i working on media player software. application far can play, pause , fast forward etc, video.

i can play/load 1 video using:

void dialog::on_loadedbutton_clicked(){      player->setmedia(qurl::fromlocalfile("f:/testvideo/20141208/n01000713.mp4")); } 
  • my folder (20141208) date
  • n01000713.mp4 file name of footage generated camera.
  • n01 channel 1
  • 00:07:13 hh:mm:ss when video starts
  • it ends after 10 minutes, n01001713.mp4.

i have 144 videos in 20141208 folder make 24 hours worth of footage since 1 video plays 10 minutes.

now want generalize folder contains date e.g. 20141208, has 144 videos , file name n01(hh:mm:ss).mp4 able play 144 videos.

i not want setmedia 144 videos fixed because want able play videos different dates, e.g. date 20141208, 20141209 folders etc.

how can


Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -