forked from forks/ffprobe-wasm
Update project name to ffprobe-wasm.
This commit is contained in:
2
www/package-lock.json
generated
2
www/package-lock.json
generated
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "ffprobe-web-analyzer",
|
||||
"name": "ffprobe-wasm",
|
||||
"version": "0.0.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "ffprobe-web-analyzer",
|
||||
"name": "ffprobe-wasm",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<script src="ffprobe-web-analyzer.js"></script>
|
||||
<script src="ffprobe-wasm.js"></script>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="container">
|
||||
<b-navbar-nav>
|
||||
<b-nav-item href="#">
|
||||
FFProbe Web Analyzer
|
||||
FFProbe
|
||||
</b-nav-item>
|
||||
</b-navbar-nav>
|
||||
</div>
|
||||
@@ -13,7 +13,7 @@
|
||||
<GitHubCorner />
|
||||
|
||||
<div id="app" class="container">
|
||||
<h3>FFProbe Web Analyzer</h3>
|
||||
<h3>FFProbe</h3>
|
||||
|
||||
<b-alert variant="warning" show>
|
||||
⚠️Compatible with Chrome and Edge only due to limited support for <a href="https://caniuse.com/sharedarraybuffer">SharedArrayBuffer</a> and the <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer">required CORS headers</a> for Firefox on Github Pages.
|
||||
@@ -28,8 +28,8 @@
|
||||
<div class="text-muted">
|
||||
<ul>
|
||||
<li>{{ name }}-{{ version }}</li>
|
||||
<li><a href="https://github.com/alfg/ffprobe-web-analyzer">Source</a></li>
|
||||
<li><a href="https://github.com/alfg/ffprobe-web-analyzer/issues">Report Bugs</a></li>
|
||||
<li><a href="https://github.com/alfg/ffprobe-wasm">Source</a></li>
|
||||
<li><a href="https://github.com/alfg/ffprobe-wasm/issues">Report Bugs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<b-form-group label="Select a file:" label-for="file">
|
||||
<b-form-file
|
||||
id="file"
|
||||
accept="video/mp4"
|
||||
accept="video/*"
|
||||
v-model="file"
|
||||
:state="Boolean(file)"
|
||||
placeholder="Choose a file or drop it here..."
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<!-- http://tholman.com/github-corners/ -->
|
||||
<a
|
||||
href="https://github.com/alfg/ffprobe-web-analyzer"
|
||||
href="https://github.com/alfg/ffprobe-wasm"
|
||||
class="github-corner"
|
||||
aria-label="View source on GitHub"
|
||||
>
|
||||
|
||||
@@ -2,11 +2,11 @@ module.exports = {
|
||||
pages: {
|
||||
index: {
|
||||
entry: 'src/main.js',
|
||||
title: 'FFProbe Web Analyzer',
|
||||
title: 'FFProbe',
|
||||
}
|
||||
},
|
||||
publicPath: process.env.NODE_ENV === 'production'
|
||||
? '/ffprobe-web-analyzer/'
|
||||
? '/ffprobe-wasm/'
|
||||
: '/',
|
||||
configureWebpack: {
|
||||
devServer: {
|
||||
|
||||
Reference in New Issue
Block a user