blob: 7e1f95d3e4a1cf968d906ceed8b813e08be13583 (
plain)
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HandBrakePresetService.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The hand brake preset service.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using HandBrake.ApplicationServices.Interop.HbLib;
using HandBrake.ApplicationServices.Interop.Helpers;
using HandBrake.ApplicationServices.Interop.Json.Presets;
using HandBrake.ApplicationServices.Services.Logging;
using HandBrake.ApplicationServices.Services.Logging.Interfaces;
using HandBrake.ApplicationServices.Services.Logging.Model;
using Newtonsoft.Json;
/// <summary>
/// The hand brake preset service.
/// </summary>
public class HandBrakePresetService
{
private static readonly ILog log = LogService.GetLogger();
/// <summary>
/// The get built in presets.
/// Requires an hb_init to have been invoked.
/// </summary>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public static IList<PresetCategory> GetBuiltInPresets()
{
IntPtr presets = HBFunctions.hb_presets_builtin_get_json();
string presetJson = Marshal.PtrToStringAnsi(presets);
log.LogMessage(presetJson, LogMessageType.API, LogLevel.Debug);
IList<PresetCategory> presetList = JsonConvert.DeserializeObject<IList<PresetCategory>>(presetJson);
return presetList;
}
/// <summary>
/// The get preset from file.
/// </summary>
/// <param name="filename">
/// The filename.
/// </param>
/// <returns>
/// The <see cref="PresetCategory"/>.
/// </returns>
public static PresetTransportContainer GetPresetFromFile(string filename)
{
IntPtr presetStringPointer = HBFunctions.hb_presets_read_file_json(InteropUtilities.ToUtf8PtrFromString(filename));
string presetJson = Marshal.PtrToStringAnsi(presetStringPointer);
log.LogMessage(presetJson, LogMessageType.API, LogLevel.Debug);
PresetTransportContainer preset = JsonConvert.DeserializeObject<PresetTransportContainer>(presetJson);
return preset;
}
/// <summary>
/// The export preset.
/// </summary>
/// <param name="filename">
/// The filename.
/// </param>
/// <param name="container">
/// The container.
/// </param>
public static void ExportPreset(string filename, PresetTransportContainer container)
{
string preset = JsonConvert.SerializeObject(container, Formatting.Indented);
using (StreamWriter writer = new StreamWriter(filename))
{
writer.Write(preset);
}
}
}
}
|