2023-08-18 17:23:56 -04:00
|
|
|
<script>
|
|
|
|
import FILTERS from "./filters.json";
|
|
|
|
import { inputs, output, filters } from "./stores.js";
|
|
|
|
import Input from "./Input.svelte";
|
|
|
|
import Output from "./Output.svelte";
|
|
|
|
import Filter from "./Filter.svelte";
|
2023-08-18 18:59:16 -04:00
|
|
|
import FilterPicker from "./FilterPicker.svelte";
|
|
|
|
import Modal from "./Modal.svelte";
|
|
|
|
|
|
|
|
let showFilterModal = false;
|
2023-08-18 17:23:56 -04:00
|
|
|
|
|
|
|
function newInput() {
|
|
|
|
$inputs = [...$inputs, ""];
|
|
|
|
}
|
|
|
|
|
|
|
|
function newFilter() {
|
2023-08-18 18:59:16 -04:00
|
|
|
showFilterModal = true;
|
2023-08-18 17:23:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let command = "";
|
|
|
|
|
|
|
|
inputs.subscribe(updateCommand);
|
|
|
|
output.subscribe(updateCommand);
|
|
|
|
filters.subscribe(updateCommand);
|
|
|
|
|
|
|
|
function updateCommand() {
|
|
|
|
const cInputs = $inputs.map((i) => `-i ${i}`).join(" ");
|
|
|
|
|
|
|
|
const cOutput = $output;
|
|
|
|
|
|
|
|
const cFilters = $filters
|
|
|
|
.map((f) => {
|
|
|
|
let fCommand = f.name;
|
|
|
|
if (f.params && f.params.length > 0) {
|
|
|
|
let params = f.params
|
|
|
|
.map((p) => {
|
|
|
|
if (p.value === "" || p.value === null) return null;
|
|
|
|
return `${p.name}=${p.value}`;
|
|
|
|
})
|
|
|
|
.filter((p) => p !== null)
|
|
|
|
.join(":");
|
|
|
|
fCommand += "=" + params;
|
|
|
|
}
|
|
|
|
return fCommand;
|
|
|
|
})
|
|
|
|
.join(",");
|
|
|
|
|
|
|
|
let out = `ffmpeg ${cInputs}`;
|
|
|
|
|
2023-08-18 17:29:08 -04:00
|
|
|
if (cFilters) out += ` -filter_complex "${cFilters}"`;
|
2023-08-18 17:23:56 -04:00
|
|
|
|
|
|
|
out += ` ${cOutput}`;
|
|
|
|
|
|
|
|
command = out;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<section class="command">{command}</section>
|
|
|
|
<section class="inputs">
|
|
|
|
<h3>Inputs</h3>
|
|
|
|
{#each $inputs as inp, index}
|
|
|
|
<Input bind:filename={inp} {index} />
|
|
|
|
{/each}
|
|
|
|
<button on:click={newInput}>New Input</button>
|
|
|
|
|
|
|
|
{#each $inputs as inp}
|
|
|
|
<p>{inp}</p>
|
|
|
|
{/each}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="filters">
|
|
|
|
<!-- {JSON.stringify($filters)} -->
|
|
|
|
<h3>Filters</h3>
|
|
|
|
<button on:click={newFilter}>Add Filter</button>
|
2023-08-18 18:59:16 -04:00
|
|
|
<Modal bind:showModal={showFilterModal}>
|
|
|
|
<FilterPicker bind:showFilterModal />
|
|
|
|
</Modal>
|
2023-08-18 17:23:56 -04:00
|
|
|
<div class="filters-holder">
|
|
|
|
{#each $filters as f, index}
|
|
|
|
<div class="filter">
|
|
|
|
<Filter bind:filter={f} {index} />
|
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="output">
|
|
|
|
<h3>Output</h3>
|
|
|
|
<Output bind:filename={$output} />
|
|
|
|
<p>{$output}</p>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.filters-holder {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
}
|
|
|
|
.filter {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
</style>
|