Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

avconv_id3

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avconv_id3 - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

14

package.json
{
"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
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc