mp3 Questions

8

What is the best way to get and set the meta data for mp3, mp4, avi files etc. with .NET?
Surpass asked 12/8, 2008 at 18:1

3

Solved

I use ffmpeg to update metadata tags like this way: ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text" -metadata comment="comment text" "out.m4a" Well, "artist text" and "comment tex...
Innings asked 18/4, 2013 at 12:16

10

How do I play mp3 with Powershell? What I tried: powershell -c (New-Object Media.SoundPlayer "Track.mp3").Play();
Vilberg asked 17/9, 2014 at 16:8

5

Solved

FFMPEG is really a great tool. I know it can edit ID3 tags and even remove all tags in a row : ffmpeg -i tagged.mp3 -map_metadata -1 untagged.mp3 But even after that, there's still the cover ima...
Gruel asked 25/11, 2013 at 12:26

6

If I have an MP3 file how can I convert it to a WAV file? (preferably, using a pure python approach)
Pilatus asked 15/6, 2010 at 22:36

2

The code below doesnt seem to update the artwork of the mp3 file. Code:- from mutagen.id3 import ID3, APIC audio = ID3(musicFilename) with open(coverFilename, 'rb') as albumart: print albumart.re...
Ardennes asked 17/11, 2017 at 8:38

5

Solved

I am trying to create a silent / empty mp3 file of (x) seconds using the command line. Quite a simple task I thought! It seems LAME is able to do something like this, but I am unable to find anyth...
Widget asked 11/3, 2011 at 17:28

5

I am new learner of audio editing libs - Pydub. I want to change some audio files' playback speed using Pydub(say .wav/mp3 format files), but I don't know how to make it. The only module I saw that...
Foulk asked 20/7, 2018 at 4:4

1

Since patents expired in 2017, I wonder if there are specifications of the MP3 audio format that have been made available to the public? Unfortunately, access to the official ISO/IEC 13818-3:1998 ...
Lewandowski asked 15/5, 2020 at 22:7

9

Solved

I am beginner with Android Studio. I have an MP3 file in my res\raw folder. When I sync project with Gradle files. I get the following dialog box: How do I allow for MP3 files in my project? I...
Chipboard asked 19/2, 2015 at 18:9

7

Solved

I have created a simple HTTP server which allows users to download files. But this does not seem to work for mp3 files. The content type currently is "application/misc". In order to make it work wi...
Arcanum asked 18/8, 2012 at 10:9

4

Has anyone had success with reading SHOUTcast/Icecast metadata from a remote radio stream? There are several libraries that can read metadata from a local MP3 file, but none seem designed to work ...
Intermixture asked 7/7, 2011 at 16:4

6

Solved

I am trying to use the following command with the latest ffmpeg build to remove silence from my .mp3 files: ffmpeg -i SILENCE.mp3 -af silencedetect=n=-50dB:d=1 -y -ab 192k SILENCE_OUT.mp3 Howeve...
Closer asked 6/9, 2014 at 6:42

9

Solved

I have a problem with Pydub module running in Windows and Linux. When I try open a mp3 file thus: from pydub import AudioSegment sound = AudioSegment.from_mp3("test.mp3") Console show me t...
Ploughman asked 9/3, 2014 at 15:57

5

Solved

I need to know the average volume of an mp3 file so that when I convert it to mp3 (at a different bitrate) I can scale the volume too, to normalize it... Therefore I need a command line tool / rub...
Johnsen asked 16/6, 2009 at 19:10

6

Solved

I have a mosquito problem in my house. This wouldn't usually concern a programmers' community; However, I've seen some devices that claim to deter these nasty creatures by playing a 17Khz tone. I w...
Kakalina asked 10/6, 2009 at 7:5

7

Solved

I'm looking for a resource in python or bash that will make it easy to take, for example, mp3 file X and m4a file Y and say "copy X's tags to Y". Python's "mutagen" module is great for manupulatin...
Cockpit asked 30/3, 2009 at 15:49

10

Solved

Is there a way in C# to play audio (for example, MP3) direcly from a System.IO.Stream that for instance was returend from a WebRequest without saving the data temporarily to the disk? Solution w...
Carlettacarley asked 8/10, 2008 at 20:19

5

Solved

Sorry if this question is misguided. I'm using youtube-dl to download song videos as mp3's before adding them to itunes. The problem is that the videos dont seem to contain the metadata in there. I...
Nerine asked 5/10, 2016 at 23:44

3

Which is the best and cross-browser way to play a mp3 (very short) file via javascript? I tried different ways but there's always a problem... EDIT 1: I don't need a "full" player, I just need a ...
Sabrasabre asked 15/2, 2012 at 20:16

5

Solved

I'm using youtube-dl to extract the best possible audio quality from youtube videos. However the best quality audio usually turns out to be the webm format, which isn't useful. I would like to writ...
Soul asked 5/7, 2017 at 12:53

7

Solved

What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?
Keramic asked 16/9, 2008 at 0:40

5

Solved

I am very new to audio or mp3 stuff, was looking for a way to have a feature to split an mp3 file in C#, asp.net. After googling for a good 3-day without much of a great help, I am hoping that some...
Rheumatism asked 23/5, 2011 at 7:47

12

Solved

Is there any PHP function that will give me the MP3 duration. I looked at ID 3 function but i don't see any thing there for duration and apart from this,id3 is some kind of tag,which will not be th...
Vladivostok asked 21/8, 2012 at 10:38

7

I am asking because I couldn't find the answer anywhere. I have successfully implemented RecorderJS in order to record microphone input in JS. However, the recorded file is WAV which results in lar...
Nicely asked 2/6, 2013 at 10:0

© 2022 - 2025 — McMap. All rights reserved.