Search found 1 match

by MalteKrueger
05 Jan 2021, 22:50
Forum: File recovery
Topic: Recover videos from Canon Powershot G7 Mark III
Replies: 4
Views: 10790

Re: Recover videos from Canon Powershot G7 Mark III

Hi, maybe have a look at Recover MP4s from Canon format . I used and extended the Script of the last post.

rebuild.sh

#!/bin/bash
for j in *.mp4
do
unset found
for i in *.mov
do
cat $j $i > output/$j
if ! ffprobe output/$j 2>&1 | grep -q NAL
then
found=true
break
fi
done
if [ -z ...