accord-net / framework

Machine learning, computer vision, statistics and general scientific computing for .NET
http://accord-framework.net
GNU Lesser General Public License v2.1
4.48k stars 1.99k forks source link

Combine Multiple Screen Recordings #2212

Open wsamplaw opened 4 years ago

wsamplaw commented 4 years ago

What would you like to submit? (put an 'x' inside the bracket that applies)

Issue description We recently added VideoFileWriter to an application that will record the users activities while in the app. The recordings are working great. Sometimes there will be multiple screen recordings per user session. Is there a way to combine multiple recordings into a single recording using Accord?

davidrapan commented 4 years ago

What would you like to submit? (put an 'x' inside the bracket that applies)

  • [x ] question
  • [ ] bug report
  • [ ] feature request

Issue description We recently added VideoFileWriter to an application that will record the users activities while in the app. The recordings are working great. Sometimes there will be multiple screen recordings per user session. Is there a way to combine multiple recordings into a single recording using Accord?

Hey, u mean like combine side by side?

D.

wsamplaw commented 4 years ago

So there could be multiple screen recordings per session, multiple files, and we would like to make one long screen recording file before viewing them.

Thanks.

From: David Rapaň notifications@github.com Sent: 30 September, 2020 2:31 PM To: accord-net/framework framework@noreply.github.com Cc: Wade Samplawski wade@amtelco.com; Author author@noreply.github.com Subject: Re: [accord-net/framework] Combine Multiple Screen Recordings (#2212)

What would you like to submit? (put an 'x' inside the bracket that applies)

Issue description We recently added VideoFileWriter to an application that will record the users activities while in the app. The recordings are working great. Sometimes there will be multiple screen recordings per user session. Is there a way to combine multiple recordings into a single recording using Accord?

Hey, u mean like combine side by side?

D.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/accord-net/framework/issues/2212#issuecomment-701597998, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKJ6RTV33KGMRBZC5HH44B3SIOBQHANCNFSM4R7DP43Q.

davidrapan commented 4 years ago

So there could be multiple screen recordings per session, multiple files, and we would like to make one long screen recording file before viewing them. Thanks. From: David Rapaň notifications@github.com Sent: 30 September, 2020 2:31 PM To: accord-net/framework framework@noreply.github.com Cc: Wade Samplawski wade@amtelco.com; Author author@noreply.github.com Subject: Re: [accord-net/framework] Combine Multiple Screen Recordings (#2212) What would you like to submit? (put an 'x' inside the bracket that applies) [x ] question [ ] bug report * [ ] feature request Issue description We recently added VideoFileWriter to an application that will record the users activities while in the app. The recordings are working great. Sometimes there will be multiple screen recordings per user session. Is there a way to combine multiple recordings into a single recording using Accord? Hey, u mean like combine side by side? D. — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub<#2212 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKJ6RTV33KGMRBZC5HH44B3SIOBQHANCNFSM4R7DP43Q.

Ok so now I understand probably. I'm not that familiar with this particular library and at first glance I don't see any editing tools but maybe u could have try to stack multiple Accord.Video.FFmpeg.VideoFileReaders onto one Accord.Video.FFmpeg.VideoFileWriter. First open VFWriter with path to new desired video file. Then open existing video files as VFReaders and one by one trough read and write methods write into VFWriter.

But it's really not best scenario at all... Just only that conversion trough imgs involved will be over af. Maybe will be best for you to simply use FFmpegs console. But for to have "just things done" will probably work even this Accord way.

Hope I helped, best regards, D.