-
Notifications
You must be signed in to change notification settings - Fork 20
/
manage_transcode.php
72 lines (64 loc) · 2.33 KB
/
manage_transcode.php
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
<?php
include('config.php');
logincheck();
$message = [];
$title = "Create transcode profile";
$trans = new Transcode;
$categories = Category::all();
if (isset($_GET['id'])) {
$title = "Edit transcode profile";
$trans = Transcode::where('id', '=', $_GET['id'])->first();
}
if (isset($_POST['submit'])) {
$trans->name = $_POST['profilename'];
$trans->probesize = $_POST['probesize'];
$trans->analyzeduration = $_POST['analyzeduration'];
$trans->video_codec = $_POST['video_codec'];
$trans->audio_codec = $_POST['audio_codec'];
$trans->profile = $_POST['profile'];
$trans->preset_values = $_POST['preset_values'];
$trans->bufsize = $_POST['bufsize'];
$trans->scale = $_POST['scalling'];
$trans->aspect_ratio = $_POST['aspect_ratio'];
$trans->video_bitrate = $_POST['video_bitrate'];
$trans->audio_channel = $_POST['audio_channel'];
$trans->audio_bitrate = $_POST['audio_bitrate'];
$trans->fps = $_POST['fps'];
$trans->minrate = $_POST['minrate'];
$trans->maxrate = $_POST['maxrate'];
$trans->bufsize = $_POST['bufsize'];
$trans->audio_sampling_rate = $_POST['audio_sampling_rate'];
$trans->crf = $_POST['crf'];
$trans->threads = $_POST['threads'];
$trans->deinterlance = 0;
if (isset($_POST['deinterlance'])) {
$trans->deinterlance = 1;
}
if (empty($_POST['profilename'])) {
$message['type'] = "error";
$message['message'] = "Profilename field is empty";
} else {
if (isset($_GET['id'])) {
$message['type'] = "success";
$message['message'] = "Transcode profile saved";
$trans->save();
} else {
$exists = Transcode::where('name', '=', $_POST['profilename'])->get();
if (count($exists) > 0) {
$message['type'] = "error";
$message['message'] = "Transcode profile name already in use";
} else {
$message['type'] = "success";
$message['message'] = "Transcode created";
$trans->save();
redirect("manage_transcode.php?id=" . $trans->id, 1000);
}
}
}
}
echo $template->view()->make('manage_transcode')
->with('transcode', $trans)
->with('categories', $categories)
->with('message', $message)
->with('title', $title)
->render();