New filters on the Home Feed, take a look!
view details

This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

3
Joining together Wyzecam clips on a Mac
Post Body

I had some footage that I wanted to piece together. I figured I'd just drop them into iMovie and be done in a few minutes. Nope.

Memory cards are formatted with exFat. Not only is this unreadable on Mac, but it will actually delete your content if you insert it into a mac. So unfortunately, step 1 of this is to grab the files off the card using Windows first (Parallels or Bootcamp should work).

Second, audio is recorded using an 8 bit a-law G.711 codec. iMovie doesn't support that. So I used ffmpeg, to convert it to AAC. I did this in terminal as follows:

for i in \*.mp4; do ffmpeg -i "$i" -acodec aac -vcodec copy "aac${i%.\*}.mp4"; done

This will loop through every mp4 file in a directory and create a new file with AAC encoded audio. I grabbed those new files and stuck them in a new directory.

Next, I created a text file that contained all the newly encoded files that I want to be joined together:

for f in ./*.mp4; do echo "file '$f'" >> mylist.txt; done

I could then pass that file into ffmpeg's concat function to join them together:

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4

Someone with more ffmpeg experience could certainly join the commands together and spit it out in a more efficient way, but I thought this might help someone. Happy Wyzeing!

Author
Account Strength
100%
Account Age
9 years
Verified Email
Yes
Verified Flair
No
Total Karma
105,679
Link Karma
75,709
Comment Karma
29,575
Profile updated: 1 day ago
Posts updated: 3 weeks ago

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
5 years ago