Some Canon-Cameras can record raw-videos using some stuff from magiclantern. The resulting videofiles are MLV-files. To work with these raw-files, some guys developed mlvapp.
With mlvapp, you can view the raw-files , you can decode and export them and you can do some nice postprocessing.
The source code for mlvapp is located on github.
Here is a little bashscript to clone the source-code from github, resolve some dependencies, compile and install it.
Note, that script only works on openSUSE. I tested it with Tumbleweed.
I give no warrenty. If you want to use this script, you do it at your own risc.
#!/bin/bash # Installationsscript für mlvapp # Für Linux openSUSE Tumbleweed # # Start des Scriptes im Terminal mit sh... # # sh mlvapp-clone.sh # # Nicht als root ausführen # # ********** Benutzung auf eigene Gefahr ***************** set -e #exit on error if [ $HOME = "/root" ] then echo echo "********************************************" echo "*** Script nicht als root starten! ***" echo "*** Abbruch ***" echo "********************************************" echo exit fi ################################# preparation ################################### # --- Hauptverzeichnis --- mkdir -p ~/mlvapp-project ################################# dependencies ################################### echo echo echo "##################### Abhängigkeiten auflösen bzw. updaten ##########################" echo echo # --- compile-envirement --- sudo zypper --non-interactive install \ libqt5-creator \ libqt5-qtmultimedia-devel echo echo # ------------ git -------- sudo zypper --non-interactive install \ git echo echo ############################### clone from github ################################## echo echo echo "######################## mlvapp code clonen ##########################" echo echo cd ~/mlvapp-project git clone https://github.com/ilia3101/MLV-App.git MLV-App-master echo echo ############################ delete zero-byte ffmpeg ############################### echo echo echo "##################### zero byte fffmpeg löschen ##########################" echo echo rm ~/mlvapp-project/MLV-App-master/platform/qt/FFmpeg/ffmpeg ############################### compile and install ################################ echo echo echo "########################### stash-file erzeugen ############################" echo echo cd ~/mlvapp-project/MLV-App-master/platform/qt qmake-qt5 echo echo echo echo echo "############################## Kompilieren #################################" echo echo make echo echo echo "############################## Installieren ################################" echo echo echo echo make install ################################# end ################################################ echo echo echo "################################## Fertig ###################################" echo echo exit