ilia3101 / MLV-App

All in one MLV processing app.
https://mlv.app/
GNU General Public License v3.0
274 stars 30 forks source link

cant export CinemaDNG - "Disk full" but it's not #256

Closed tatrapikao closed 1 year ago

tatrapikao commented 1 year ago

Hi, when i try to export a file as CinemaDNG it aborts with the error message "Disk Full". But There is plenty of space. After aborting i find a folder with an empty (completely transparent) DNG File and the corresponding audio file. exporting as Proress works fine. What am i missing? Version is 1.14. I'm on Ubuntu 22.04.

masc4ii commented 1 year ago

MLVApp uses a Qt function for checking disk space: QStorageInfo disk = QStorageInfo( QFileInfo( path ).path() ); This function is used in identical way in CDNG and in ProRes export. You get the "Disk full" Messagebox, if the function returns <= 20MB. If you like, you could try to debug by uncommenting the qDebug... line in void MainWindow::checkDiskFull(QString path).

masc4ii commented 1 year ago

For DNG export the test pointed into AppArchive by error, which is read only, so 0 bytes free. Fixed: d1ed3efcabe27853e0f06f0ac741b4d1ccf4bb32

omygolly commented 1 year ago

I get the same error on Lubuntu 22 with 1.14 when I try to export CinemaDNG. Works fine in 1.13.

masc4ii commented 1 year ago

Please test the fix and report.