How do I split large audio/video files into 30-minute segments on MacBook Air?
find free software for macbookair to convert big audio/video files into 30 minutes each of audio or video files
[Re-Titled by Moderator]
Original Title: MacBook Air: Free
find free software for macbookair to convert big audio/video files into 30 minutes each of audio or video files
[Re-Titled by Moderator]
Original Title: MacBook Air: Free
The best tool for this 30-minute segment approach is ffmpeg run from the folder containing the large A/V file:
ffmpeg -i foo.mp4 -c:v copy -c:a copy -f segment -segment_time 00:30:00 -reset_timestamps 1 -segment_start_number 1 -map 0 output_%03d.mp4
The ffmpeg tool can be built from sources by you, or via homebrew package manager. If you build it (below), you won't have to deal with the 43 dependencies that homebrew must install during the build process. Those dependencies will require updating in the future as new versions of each are released. That is a black hole.
Build it yourself from source code. Reasonably automated.
In the Terminal and within the folder where you split the A/V video, you can loop through each split video file to see its duration in seconds:
for f in output_*.mp4;
do
mdls -raw -name kMDItemDurationSeconds "${f}" | xargs
done
The best tool for this 30-minute segment approach is ffmpeg run from the folder containing the large A/V file:
ffmpeg -i foo.mp4 -c:v copy -c:a copy -f segment -segment_time 00:30:00 -reset_timestamps 1 -segment_start_number 1 -map 0 output_%03d.mp4
The ffmpeg tool can be built from sources by you, or via homebrew package manager. If you build it (below), you won't have to deal with the 43 dependencies that homebrew must install during the build process. Those dependencies will require updating in the future as new versions of each are released. That is a black hole.
Build it yourself from source code. Reasonably automated.
In the Terminal and within the folder where you split the A/V video, you can loop through each split video file to see its duration in seconds:
for f in output_*.mp4;
do
mdls -raw -name kMDItemDurationSeconds "${f}" | xargs
done
I cannot.
It's been quite a while since I used iMovie to do video editing. But you might find this useful: iMovie User Guide for Mac - Apple Support
Audacity is pretty straightforward as editors go. You can find good guidance if you google it. You can also visit the Audacity website for additional help. https://www.audacityteam.org/
If you can tell me the easy way to do that? These mac software seems hard to use for someone who mostly work on Windows.
How do I split large audio/video files into 30-minute segments on MacBook Air?