mp3 Questions
8
What is the best way to get and set the meta data for mp3, mp4, avi files etc. with .NET?
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...
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...
6
If I have an MP3 file how can I convert it to a WAV file? (preferably, using a pure python approach)
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...
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...
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...
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...
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...
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...
10
Solved
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#?
5
Solved
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...
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
1 Next >
© 2022 - 2025 — McMap. All rights reserved.