Search found 3 matches

by smccloud
Sat May 16, 2020 8:01 pm
Forum: General Questions
Topic: Creating a queue file from scratch
Replies: 6
Views: 663

Re: Creating a queue file from scratch

The Queue JSON is not a documented format as it's not expected to be user editable. It's also subject to change in any way without notice as a result so it's not advised to create json files yourself. There is limited error handling around it, so an invalid JSON will be hard to debug. You can alway...
by smccloud
Sat May 16, 2020 5:58 pm
Forum: General Questions
Topic: Creating a queue file from scratch
Replies: 6
Views: 663

Re: Creating a queue file from scratch

I program in C#, so I can create a custom type to store everything in using a list and then use a NuGet package to serialize it to Json. I just need to know what is required in the Json file to include it. Right now I output the raw commands with a "&&" between them to chain them t...
by smccloud
Sat May 16, 2020 3:30 pm
Forum: General Questions
Topic: Creating a queue file from scratch
Replies: 6
Views: 663

Creating a queue file from scratch

Description of problem or question: I am in the process of shrinking a lot of files and also converting non-HEVC MKV containers to HEVC. I am decent at programming so right now I'm creating individual command line commands for each file I want to process. I am wondering if anyone knows if it is pos...