Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tails
tails
Commits
97fe483e
Commit
97fe483e
authored
Jun 20, 2018
by
sajolida
Browse files
Document how to prepare video clips from user testing recordings
parent
408daec1
Changes
2
Hide whitespace changes
Inline
Side-by-side
wiki/src/contribute/how/user_experience.mdwn
View file @
97fe483e
...
...
@@ -29,6 +29,7 @@ Resources
- [[Survey platform (*LimeSurvey*)|user_experience/limesurvey]]
- [[Guidelines for user testing|user_experience/testing]]
- [[Recording user testing|user_experience/recording]]
- [[Preparing video clips|user_experience/clip]]
- Participant Bill of Rights (adapted from
[Simply Secure](https://simplysecure.org/knowledge-base/)):
- [English ODT](https://github.com/sajolida/tails-ux/raw/master/tools/bill_of_rights.en.fodt)
...
...
wiki/src/contribute/how/user_experience/clip.mdwn
0 → 100644
View file @
97fe483e
[[!meta title="Preparing video clips"]]
Cut out a video clip from a longer recording
--------------------------------------------
ffmpeg -ss [start] -t [duration] -i [input] [output]
For example:
ffmpeg -ss 25:20 -t 10 -an -i P4.ogv clip.webm
Amplify the audio in a video clip
---------------------------------
ffmpeg -i [input] -af "volume=25dB" [output]
For example:
ffmpeg -i clip.webm -af "volume=25dB" clip-amplified.webm
Remove the sound in a video clip
--------------------------------
ffmpeg -i [input] -an [output]
For example:
ffmpeg clip.webm -an clip-nosound.webm
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment