Comparing version 1.0.0 to 2.0.0
{ | ||
"name": "avconv_id3", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"description": "Read and write media metadata using avconv", | ||
@@ -19,4 +19,5 @@ "main": "index.js", | ||
], | ||
"author": { | ||
"name": "elribonazo" | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/elribonazo/avconv_id3.git" | ||
}, | ||
@@ -34,3 +35,8 @@ "license": "Public Domain", | ||
}, | ||
"readme": "ERROR: No README data found!" | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/elribonazo/avconv_id3/issues" | ||
}, | ||
"homepage": "https://github.com/elribonazo/avconv_id3" | ||
} |
@@ -1,5 +0,4 @@ | ||
# node-ffmetadata | ||
# avconv_id3 | ||
Read and write media file meta data (e.g., MP3 ID3 tags) using ffmpeg's | ||
metadata framework. | ||
Read and write media file meta data (e.g., MP3 ID3 tags) using avconv's metadata framework. | ||
@@ -9,7 +8,7 @@ # Usage | ||
```js | ||
var ffmetadata = require("ffmetadata"); | ||
var avconv = require("avconv_id3"); | ||
var fs = require("fs"); | ||
// Read song.mp3 metadata | ||
ffmetadata.read("song.mp3", function(err, data) { | ||
avconv.read("song.mp3", function(err, data) { | ||
if (err) console.error("Error reading metadata, err"); | ||
@@ -23,3 +22,3 @@ else console.log(data); | ||
}; | ||
ffmetadata.write("song.mp3", data, function(err) { | ||
avconv.write("song.mp3", data, function(err) { | ||
if (err) console.error("Error writing metadata"); | ||
@@ -39,3 +38,3 @@ else console.log("Data written"); | ||
```js | ||
ffmetadata.write("song.mp3", {}, ["cover.jpg"], function(err) { | ||
avconv.write("song.mp3", {}, ["cover.jpg"], function(err) { | ||
if (err) console.error("Error writing cover art"); | ||
@@ -47,3 +46,3 @@ else console.log("Cover art added"); | ||
FFmpeg meta data (for songs) might include | ||
Avconv meta data (for songs) might include | ||
@@ -58,16 +57,6 @@ * `"artist"`: artist name | ||
See [FFmpeg Metadata][] for details. | ||
[ffmpeg metadata]: http://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata | ||
# Installation | ||
**Dependency**: [FFmpeg][] or [libav][] must be installed on the system. | ||
This module uses the `ffmpeg` command-line tool. Version: 0.10. | ||
[ffmpeg]: http://www.ffmpeg.org | ||
[libav]: http://www.libav.org/avconv.html | ||
``` | ||
npm install ffmetadata | ||
npm install avconv | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 2 instances in 1 package
Misc. License Issues
License(Experimental) A package's licensing information has fine-grained problems.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
0
0
1
1
6272
4
153
58