Avidemux Forum

Avidemux => Windows => Topic started by: scscorpin on July 04, 2024, 08:41:23 AM

Title: My script/hotkeys/very slow adding segments
Post by: scscorpin on July 04, 2024, 08:41:23 AM
Свой скрипт:
  на данный момент пришлось сделать внешний скрипт, чтобы горячими клавишами делать виртуозный монтаж, в связи с тем, что незнаю следующее:
   
   
горячие клавиши:
  при использовании внешнего скрипта заметил, что происходит медленное перемещение по ключевым кадрам!
   

ооооооооооооочень медленное добавление сегментов:
  предполагаю, что каждый раз при добавлении сегмента, что-то обновляет/перерендеривает все уже добавленные сегменты в итоговом видео с целью оптимизировать предпросмотр
  Я так понял, что есть скрытое Отрендеренное видео для оптимизации предпросмотра



My script:
  at the moment I had to make an external script to do virtuoso editing with hot keys, due to the fact that I don't know the following:


hot keys:
  when using an external script I noticed that there is a slow movement along the key frames!


very slow adding of segments:
  I assume that every time a segment is added, something updates/re-renders all the already added segments in the final video in order to optimize the preview
  I understand that there is a hidden Rendered video to optimize the preview
Title: Re: My script/hotkeys/very slow adding segments
Post by: eumagga0x2a on July 04, 2024, 11:21:12 PM
Quote from: scscorpin on July 04, 2024, 08:41:23 AMhow to find out the time of key frames in My Avidemux script?

Please have a look at the getNextKFramePts(double) and getPrevKFramePts(double) methods in the Editor class. Setting the argument to a negative value returns the next or previous keyframe PTS relative to current PTS (the PTS of the picture displayed in the video preview), else relative to provided non-negative time. Please note that these methods give you the time, they don't perform any seeks.

To actually seek to a keyframe, please have a look at the seekKeyFrame(int) method in the Avidemux class. To seek to given time, you may use the setCurrentPts(double) method.

Quote from: scscorpin on July 04, 2024, 08:41:23 AMI got tired of waiting for a 7 minute multi-segment project to load, I had to wait about 3 minutes!

The number of segments (almost) doesn't matter, but the number of reference videos may matter a lot as for some codecs like H.264, Avidemux needs to determine frame type, i.e. it has to decode at least all slice headers.

For MKV, szlldm has submitted a PR implementing a way to dump the file index to disk, which massively speeds up subsequent loading of the file. I hope to be able to resume work on Avidemux and finally process this PR later this month.

Title: Re: My script/hotkeys/very slow adding segments
Post by: scscorpin on July 05, 2024, 12:13:14 PM
Свой скрипт:


Quote from: eumagga0x2a on July 04, 2024, 11:21:12 PMThe number of segments (almost) doesn't matter

несогласен, в связи с тем, что это должно происходить мгновенно в Моём понимании, но если в Avidemux вы:
      



My script:


Quote from: eumagga0x2a on July 04, 2024, 11:21:12 PMThe number of segments (almost) doesn't matter

I disagree, due to the fact that this should happen instantly in My understanding, but if in Avidemux you: