You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Stitching Two Videos Together One After The Other {#stitchingVideosOneAfterOther}
60
+
50
61
In the event that an LV1 video recorded side-by-side but the video was interrupted, resulting in two separate side-by-side video files that stop and start in the middle of a visit (e.g., if the camera box is accidentally kicked off during a visit, if the cameras crash and have to be restarted during the visit, etc.), they can be combined into one video file using Avidemux.
51
62
See the "Cute Moments Videos" section of the School Readiness Wiki for a description of how to use this program.
52
63
To combine two videos from a visit with interrupted recordings, follow these steps:
@@ -57,8 +68,27 @@ To combine two videos from a visit with interrupted recordings, follow these ste
57
68
1. Drag the second video from the File Explorer Window straight into the Avidemux window, dropping it over the first video—you should see the video duration increase when it is added, indicating it is appending to the end of the previous video
58
69
1. Save the new video in the TC's folder as TCID_Wave_LV1 (`\\lc-rs-store24.hpc.uiowa.edu\lss_itpetersen\Lab\Studies\School Readiness Study\Videos\Lab Visit 1\`)
59
70
60
-
# Handbrake
61
-
## Cutting and Creating Clips
71
+
An alternative approach is to use [ffmpeg](https://ffmpeg.org) (https://ma.ttias.be/use-ffmpeg-combine-multiple-videos/; archived at: https://perma.cc/F9P9-KS4D):
72
+
73
+
First, using Command Prompt (`cmd.exe`), create a text file named `files.txt` in the same directory as the videos you want to combine (use `cd DIRECTORY` to navigate to the target directory) with the following content:
74
+
75
+
```bash
76
+
cat files.txt
77
+
file 'file 1.mp4'
78
+
file 'file 2.mp4'
79
+
file 'file 3.mp4'
80
+
file 'file 4.mp4'
81
+
```
82
+
83
+
Then, run the following command in the Command Prompt to combine the videos listed in `files.txt` into a single output file named `output.mp4`:
## Cutting and Creating Clips {#cuttingAndCreatingClips}
62
92
63
93
When a video requires cutting and subsequent clips must be created, the software, Handbrake, should be utilized.
64
94
Handbrake allows for easy creation of video clips in .mp4 format from a source video in the .mp4 format.
@@ -87,7 +117,7 @@ Also verify that the name ends in `.mp4`
87
117
1. After selecting the save location for the video, at the top of the Handbrake display, select the large green play button titled, `Start Encode`, in order to create the clip
88
118
1. Upon completion of encoding, view the created video in order to ensure the clip was successfully made with desired start and end times
89
119
90
-
### Creating Multiple Clips from the Same Video Simultaneously
120
+
### Creating Multiple Clips from the Same Video Simultaneously {#creatingMultipleClips}
91
121
92
122
Multiple clips can be made from the same source video and processed simultaneously in Handbrake.
93
123
<br>
@@ -113,7 +143,7 @@ Ensure the start and end times are changed appropriately for each clip and the f
113
143
1. Once all clips desired to be made have been added to the queue, select the large green play button titled, `Start Queue`, in order to create all the clips listed within the queue
114
144
1. Upon completion of encoding, view the created videos in order to ensure the clips were saved to the correct file location(s) and each clip was successfully made with desired start and end times
115
145
116
-
# Converting Media Files to .mp4
146
+
# Converting Media Files to .mp4 {#convertToMp4}
117
147
118
148
To convert video of alternate file type to .mp4, complete the following steps:
0 commit comments