Benutzer-Werkzeuge

Webseiten-Werkzeuge


wiki:video_repair

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
Letzte ÜberarbeitungBeide Seiten, nächste Überarbeitung
wiki:video_repair [2020/10/24 21:48] – [ffmpeg] pulsarwiki:video_repair [2021/05/31 14:12] techguru
Zeile 19: Zeile 19:
 Man kann versuchen die defekte Video-Datei mit ''mencoder'' umzuwandeln und so evtl. zu reparieren: Man kann versuchen die defekte Video-Datei mit ''mencoder'' umzuwandeln und so evtl. zu reparieren:
  
-  mencoder -forceidx -oac copy -ovc copy corruptvideo.mp4 -o fixedvideo.avi+  mencoder -forceidx -oac pcm -ovc copy corruptvideo.mp4 -o fixedvideo.avi
  
      
Zeile 68: Zeile 68:
 Nur die ersten 30 Sekunden eines Videos in eine neue Datei speichern Nur die ersten 30 Sekunden eines Videos in eine neue Datei speichern
  
-  ffmpeg -i half_the_frame_size.mkv -t 00:00:30 TheRunoftheGoldenBull.mkv+  ffmpeg -i originalfilm.mkv -t 00:00:30 TheRunoftheGoldenBull.mkv
  
-Aus der Mitte eines Video einen bestimmten Bereich wählen. Hier ab der 11. Sekunde und ab da 31 Sekunden weiter.+Da der obige Kommando sehr lange dauerte, ohne sichtbare Qualitätsunterschiede, habe ich den folgenden Kommando genommen der wesentlich schneller ist:
  
-  ffmpeg -ss 00:00:11 -i half_the_frame_size.mkv -t 31 -c copy supershort01.mkv +  ffmpeg -i originalfilm.mkv -t 00:00:30 -c copy TheRunoftheGoldenBull_30s.mkv
-==== Untrunc ====+
  
-  * https://github.com/ponchio/untrunc 
-  * http://vcg.isti.cnr.it/~ponchio/untrunc.php 
  
-It is possible to repair the broken mp4 or m4v file using UntruncFor this method you need:+Aus der Mitte eines Videos einen bestimmten Bereich wählen. Hier ab der 11. Sekunde und ab da 31 Sekunden weiter.
  
-another video file which isn'broken+  ffmpeg -ss 00:00:11 -i originalfilm.mkv -31 -c copy supershort01.mkv 
 +   
 +   
 +Video beschleunigen
  
-and Install some pre-requisite libraries with apt or zypper:+  ffmpeg -i 20210112_15171777.mp4 -filter:v "setpts=0.5*PTS" output_fast.mp4 
 +  
  
-  sudo apt install libavformat-dev libavcodec-dev libavutil-dev+Video verlangsamen
  
-Unter Suse benötigte ich noch das Paket zlib-devel+  ffmpeg -i 20210112_15171777.mp4 -filter:v "setpts=2.0*PTS" output_slow.mp4
  
-  zypper in zlib-devel 
  
 +Zwei einzelne Video Dateien zusammenfügen. Hierzu müssen die beiden oder mehrere Dateien untereinander in einer Text Datei eingetragen werden:
 + 
 +<code>
 +cat files.txt
 +file '20210112_video01.mp4'
 +file '20210112_video02.mp4'
 +</code>
  
-This is what to do:+Anschließend beginnt das zusammensetzen der Dateien mit ''ffmpeg''
  
-   +  ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4
-Download the source code for Untrunc from the github repo:+
  
-  wget https://github.com/ponchio/untrunc/archive/master.zip 
  
-Unzip the source code: 
  
-  unzip master.zip+Audio, Musik, Ton aus einer Musik-Datei zu einem Video hinzufügen
  
-Go into the directory where it's been unzipped:+  ffmpeg -i ronnimachtsport01.mp4 -i music.m4a -map 0:v -map 1:a -c:v copy -shortest output_mit_musik.mp4
  
-  cd untrunc-master 
  
-Compile the source code using this command (all one line):+==== Untrunc ====
  
-  g++ -o untrunc file.cpp main.cpp track.cpp atom.cpp mp4.cpp -L/usr/local/lib -lavformat -lavcodec -lavutil+  * https://github.com/ponchio/untrunc
  
-(you can try skipping this step and using the ready-provided executable, but it didn't work for me)+oder eine verbesserte Version:
  
-Then you can actually fix the video. You need both the broken video and an example working video.+  * https://github.com/anthwlock/untrunc
  
-Ideally the video should be from the same camera & have the same resolution (mine was but it might work without). Also if it is at least as long as the broken one (preferably roughly the same) this may help. 
  
-Run this command in the folder where you have unzipped and compiled Untrunc but replace the /path/to/... bits with your 2 video files:+Es wir neben der defekten Videodatei noch eine funktionierende Datei benötigt welche vom gleichen Gerät erstellt worden ist wie die defekte.
  
-  ./untrunc /path/to/working-video.m4v /path/to/broken-video.m4v+Zusätzlich werden noch benötigte Libraries mit ''apt'' oder ''zypper'' installiert:
  
-Then it should churn away and hopefully produce a playable file called broken-video_fixed.m4v+  sudo apt install libavformat-dev libavcodec-dev libavutil-dev
  
-That's it you're done!+Unter Suse benötigte ich noch das Paket //zlib-devel//
  
-VLC Media Player should now be able to play the file. However it may be reporting the wrong length information (Untrunc tries to guess/work this out, but doesn't always get it right). To fix this try re-encoding the video through another program.+  zypper in zlib-devel
  
  
-==== Screenshots von WebCam ====+Dann ''untrunc'' nach der README kompilieren und installieren.
  
-=== MPlayer ===+Die Verwendung von ''untrunc'' geschieht durch den Aufruf des Programms mit benötigten Optionen ''-s''  - step through unknown sequences und optional ''-v'' damit ausführliche Informationen ausgeben werden. Anschließend wird eine funktionierende Videodatei und die defekten Videodatei übergeben.
  
-To use MPlayer to take snapshots from your webcam run this command from the terminal: 
  
-  mplayer tv:// -tv driver=v4l2:width=640:height=480:device=/dev/video0 -fps 15 -vf screenshot+  ./untrunc -v -s ../../Videos/20150514_001.mp4 ../20150502_006_defekt.mp4 
 +   
 +  
  
-From here you have to press s to take the snapshot. The snapshot will be saved in your current folder as shotXXXX.png.+===== Video und Bild Aufnahme ===== 
 + 
 +Mit hilfe gängiger Programme wie Mplay, mpv und Vlc
  
-===== Video aufnehmen =====+==== Video aufnehmen ====
  
 If you want to record continuous video: If you want to record continuous video:
Zeile 147: Zeile 152:
 Unter Debian, openSuse und weiteren zu finden Unter Debian, openSuse und weiteren zu finden
   guvcview             | GTK+ UVC Viewer and Capturer           | Paket    guvcview             | GTK+ UVC Viewer and Capturer           | Paket 
 +
 +
 +
 +==== Screenshots von WebCam ====
 +
 +=== MPlayer ===
 +
 +To use MPlayer to take snapshots from your webcam run this command from the terminal:
 +
 +  mplayer tv:// -tv driver=v4l2:width=640:height=480:device=/dev/video0 -fps 15 -vf screenshot
 +
 +From here you have to press s to take the snapshot. The snapshot will be saved in your current folder as shotXXXX.png.
 +
 +