-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
148 lines (131 loc) · 4 KB
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtMultimedia
Window {
id: root
visible: true
title: qsTr("Video Recorder")
width: Style.screenWidth
height: Style.screenHeight
onWidthChanged: {
Style.calculateRatio(root.width, root.height)
}
VideoOutput {
id: videoOutput
anchors.fill: parent
visible: !playback.playing
}
Popup {
id: recorderError
anchors.centerIn: Overlay.overlay
Text {
id: recorderErrorText
}
}
CaptureSession {
id: captureSession
recorder: recorder
audioInput: controls.audioInput
camera: controls.camera
videoOutput: videoOutput
}
MediaRecorder {
id: recorder
onRecorderStateChanged: state => {
if (state === MediaRecorder.StoppedState) {
root.contentOrientation = Qt.PrimaryOrientation
mediaList.append()
} else if (state === MediaRecorder.RecordingState
&& captureSession.camera) {
root.contentOrientation = root.screen.orientation
videoOutput.grabToImage(function (res) {
mediaList.mediaThumbnail = res.url
})
}
}
onActualLocationChanged: url => {
mediaList.mediaUrl = url
}
onErrorOccurred: {
recorderErrorText.text = recorder.errorString
recorderError.open()
}
}
Playback {
id: playback
anchors.fill: parent
anchors.margins: 50
active: {
controls.captureVisible
}
}
Frame {
id: mediaListFrame
height: 150
width: parent.width
anchors.bottom: controlsFrame.top
x: controls.capturesVisible ? 0 : parent.width
background: Rectangle {
anchors.fill: parent
color: "white"
opacity: 0.8
}
Behavior on x {
NumberAnimation {
duration: 200
}
}
MediaList {
id: mediaList
anchors.fill: parent
playback: playback
}
}
Frame {
id: controlsFrame
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
height: controls.height + Style.interSpacing * 2
+ (settingEncoder.visible ? settingEncoder.height : 0)
+ (settingsMetaData.visible ? settingsMetaData.height : 0)
background: Rectangle {
anchors.fill: parent
color: "white"
opacity: 0.8
}
Behavior on height {
NumberAnimation {
duration: 100
}
}
ColumnLayout {
anchors.fill: parent
Controls {
id: controls
Layout.alignment: Qt.AlignHCenter
recorder: recorder
}
StyleRectangle {
Layout.alignment: Qt.AlignHCenter
visible: controls.settingsVisible
width: controls.width
height: 1
}
SettingsEncoder {
id: settingEncoder
Layout.alignment: Qt.AlignHCenter
visible: controls.settingsVisible
padding: Style.interSpacing
recorder: recorder
}
SettingsMetaData {
id: settingsMetaData
Layout.alignment: Qt.AlignCenter
visible: !Style.isMobile() && controls.settingsVisible
recorder: recorder
}
}
}
}