0
votes
1answer
66 views

Problems converting .flv to mp3 using FFmpeg SDK

I'm using the FFmpeg SDK to programmatically convert videos to mp3. I read the audio frames of the video this way: while(av_read_frame(pFromCtx, &pkt) >= 0) { if(pkt.stream_index == ...
0
votes
1answer
32 views

MAC's “say” command to MP3 [closed]

I want to read a very long text with the SAY mac's command (say -f file.txt), and to record the output to file.mp3. I thought about using ffmpeg to record all of it, but then i'll need to wait for all ...
0
votes
1answer
47 views

Unable to convert .mp3 to .m4a using ffmpeg [closed]

I am fully aware the legal constraints in using libfaac but this is just for my testing purpose. I have compiled ffmpeg with faac enabled. So when I tried to convert an .mp3 to a .m4a here is the ...
0
votes
1answer
28 views

what's the commond for converting mp3 to ape using ffmpeg

I've searched a day about how to convert the mp3 music file to APE. It's easy to convert APE to mp3 but I have no idea to convert mp3 to APE, thanks in advance;
0
votes
1answer
76 views

Is there any way to change bitrate of MP3 file in Android? [closed]

In Android, there are no classes or libraries to change bitrate of MP3 files. So we must use extended libraries. There are two extended library to do this, one is ffmpeg and another is lame. But in a ...
1
vote
1answer
63 views

ffmpeg - multiline text in metadata (comment tag)

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 text" ...
1
vote
0answers
115 views

Changing the bit rate of an MP3 bitrate on Android without ffmpeg

In my project, I have a 320kbps MP3 that is quite large. Since it's so big, I'd like to convert it to use a lower bit rate (about 80kbps). I know that the ffmpeg library exists to do this, but using ...
0
votes
0answers
157 views

Android App: Convert 3gp to mp3

My soundfiles should be changed from 3gp to mp3. I've tried to do this with ffmpeg: ffmpeg -i input.3gp -vn -acodec libmp3lame -ab 64k output.mp3 But the new mp3 file is only 0 KB big. Could ...
0
votes
1answer
147 views

FFMPEG Library MP3 Encoder

Does the ffmpeg library come with an MP3 encoder? This: AVCodec *pCodec = avcodec_find_encoder(AV_CODEC_ID_MP3); always returns null. I also tried AV_CODEC_ID_MP3ADU and AV_CODEC_ID_MP3ON4, they ...
0
votes
1answer
89 views

How to convert a web form uploaded mp3 to wav using PHP and ffmpeg?

I have a form where the admin can upload an mp3. Is it possible to use ffmpeg from PHP to convert that mp3 to wav when I process the form submission?
0
votes
1answer
314 views

How to speed up ffmpeg video conversions [closed]

I need to extract the audio as a MP3 file from a given video file. I have selected "ffmpeg" for audio extraction process. with the use of following arguments I have managed to extract the audio as a ...
2
votes
2answers
682 views

How to overlay two audio files using ffmpeg

Can I overlay two audio mp3 files into one mp3 output file using ffmpeg?
0
votes
0answers
258 views

FFMPEG: Invalid Pixel Format String -1 when converting MP3 to SWF

I'm having an issue with FFMPEG - receiving an error when trying to convert an MP3 into an SWF. The full output contains: $ ffmpeg -i track1.mp3 -y -ar '44100' -ab '96k' 'sample.swf' FFmpeg ...
1
vote
0answers
411 views

Working Directory: null Environment: null when trying to call compiled FFMPEG in android

I have the compiled FFMPEG file. I try to combine an image and an audio clip to form a video clip. Function to combine those two are: ffmpeg -i /mnt/sdcard/KaraokeVideos/allmapeople.mp3 -i ...
0
votes
1answer
78 views

ffmpeg transcoding errors with an embedded cover

Im trying to transcode mp3 files into wav format, so that they can be used in another script. The script requires the file to be 44.1Khz, so i add that to ffmpeg command. The problem comes when a ...
1
vote
1answer
206 views

Converting m4a -> mp3 on ASP.NET

I currently post mp3s to a site and stream it to users. However, I record in m4a and that doesn't stream unless you use flash or some special html5 implementations. I'd like to be able to upload m4as ...
0
votes
0answers
76 views

MP3 Audio requiring overlays at specific intervals to ensure I dont break copyright rules

I have started a project as a DJ to record my online radio shows to mp3. The station I play on is licenced so I am not breaking any copyright rules there. I have had the idea to upload the recordings ...
2
votes
1answer
128 views

Is there a Heroku-supported method for getting the length of an audio file in seconds?

I'm trying to implement http://blog.firmhouse.com/validate-length-of-an-audio-file-when-using-paperclip-and-s3 But I'm unsure what gem provided FFMpegWrapper, and I'd like to use Heroku to deploy ...
0
votes
1answer
525 views

VBR header created for CBR encoded mp3 when using ffmpeg with lame codec?

When I run this command to perform a lossy-to-lossy transcode from a youtube video (audio encoded in either aac or vorbis) to mp3 at constant bit rate (cbr).. ffmpeg -y -i input.vid -vn -acodec ...
0
votes
1answer
89 views

FFMPEG 1 second video [closed]

Why only 1 second video in use code? ffmpeg -loop_input -r 1 -shortest -i image.jpg -i music.mp3 -acodec copy video.mp4 I would like long video as music.mp3 length.
0
votes
2answers
406 views

JPG join MP3 to FLV

How to convert image and music to video? I would like YouTube video. I like FFMPEG command or other Ubuntu free software. I would like: *.mp3 + *.jpg = *.flv
0
votes
1answer
537 views

Error when trying to convert mp3 with image to mp4 using ffmpeg

The mp3 has an image in it, maybe some album images. When I use ffmpeg to convert it to mp4, it goes wrong. But if I convert an mp3 without an image, it succeeds. My command is like this: ffmpeg -i ...
1
vote
1answer
510 views

how do i create a stereo mp3 file with latest version of ffmpeg?

I'm updating my code from the older version of ffmpeg (53) to the newer (54/55). Code that did work has now been deprecated or removed so i'm having problems updating it. Previously I could create a ...
0
votes
2answers
459 views

How can I transcode a file with FFMPEG and stream the output file in the response of a Java servlet?

Basically, this is what I'm trying to do: 1. User passes a URL as a GET parameter to my servlet. 2. Servlet uses a ProcessBuilder to convert the media contained in that URL to a valid media format ...
0
votes
2answers
426 views

Read id3 tag from ffmpeg-converted mp3 files

I have the below script for reading the id3 tag for mp3 files. I have checked manually that id3 tags are there in mp3 files but my output always returns for a few files: MP3 file does not have any ...
0
votes
0answers
97 views

Read PCM data from a compressed file in GridFS

I need to get a iterable of pcm frames from a file in GridFs. I think the problem can be reduced to first reading the whole file from gridfs to memory and then decoding that to PCM. I have read up ...
6
votes
2answers
2k views

How can I remove silence from an MP3 programmatically?

I have MP3 files that sometimes have silence at the end. I would like to remove this silence automatically. From what I can tell, it is "perfect" silence (0 amplitude), not background noise. The ...
1
vote
2answers
967 views

Convert wma stream to mp3 stream with C# and ffmpeg

Is it possible to convert a wma stream to an mp3 stream real time? I have tried doing something like this but not having any luck: WebRequest request = WebRequest.Create(wmaUrl); ...
0
votes
0answers
455 views

How can i add cover image on mp3 file using ffmpeg?

I'm trying to convert audio file to mp3 and I want to add cover image into mp3 file. I tried this: ffmpeg.exe -i "input audio file" -i image.png out.mp3 When conversion completes there is no cover ...
1
vote
1answer
492 views

Convert AAC (.m4a) files to .mp3 in directory [closed]

I'm writing a script to convert AAC files to MP3 - specifically so I can burn them to MP3 CD's as iTunes won't transcode on the fly. I've adapted the code from Write a simple python script to convert ...
2
votes
1answer
742 views

ffmpeg “Header Missing” error recoding mp3 files

I have an mp3 encoding server running on Ubuntu (natty). This has been working perfectly up until maybe a week or two ago. I believe I ran an update, which seemed to break the encoder for me - every ...
0
votes
1answer
220 views

Extract undecoded audio payload from song file?

What tools are available to extract the raw undecoded audio payload from a song file? I am looking for a solution that will work on wma, m4a, mp3, and ogg files. One of the purposes is to be able to ...
8
votes
2answers
4k views

How to get the real, actual duration of an MP3 file (VBR or CBR) server-side

I used to calculate the duration of MP3 files server-side using ffmpeg - which seemed to work fine. Today i discovered that some of the calculations were wrong. Somehow, for some reason, ffmpeg will ...
5
votes
6answers
2k views

c++ mp3 library

I am exhausted searching for a c++ mp3 decoding library, preferably free (like lgpl) and cross-platform or for windows and mac. Can anyone suggest such library and post some tutorial for using it? ...
1
vote
0answers
911 views

Converting 3gp (amr) to mp3 using ffmpeg api calls

Converting 3gp (amr) to mp3 using ffmpeg api calls I try to use libavformat (ffmpeg) to build my own function that converts 3gp audio files (recorded with an android mobile device) into mp3 files. I ...
1
vote
1answer
3k views

mp3 decoding using ffmpeg API (Header missing)

i have been trying to decode an MP3 file to pcm, using ffmpeg API, but i keep getting an error [mp3 @ 0x8553020]Header missing this is the code i use : #include <stdlib.h> #include ...
1
vote
1answer
1k views

Should I use the MP3 or AAC codec for a .mp4 file?

We have an encoding process in place using ffmpeg on Mac OS X. This process will take a source video and a couple files from that: .m3u8 video, .mp4 video and .mp3 audio file. By default we've used ...
0
votes
2answers
542 views

Extract Wavelength from MP3 as an Image

Are there any good libraries that can help convert an MP3 into an image of its wavelengths (I think that's the proper term). What I'm looking for is a way to generate the wavelengths of MP3s ...
0
votes
1answer
564 views

Using ffmpeg to convert sound files for use in an android app

short: i'm trying to simply play a sound file converted with ffmpeg in my android app, but happen to have problems getting it to work. long: we have an iphone app and an android app doing the same ...
3
votes
0answers
376 views

ffmpeg command to convert jpg and mp3 to a video [closed]

I want to convert a song and jpg file into a mpg video. What is the exact command for that. I tried this one Add an image to mp3, and convert it to a video file using ffmpeg, but couldnt understand ...
1
vote
0answers
77 views

how can I enable CRCs in EZstream or FFMPEG?

I want to detect a corrupt MP3 stream, the encoder is using CRC. How can I enable CRC?. I want to be able to read through the headers of each frame to find the CRC, and then run it on the audio ...
0
votes
1answer
587 views

ffmpeg converting multiple audio formats to mp3

I was wondering how can I convert multiple audio formats, i.e. wav, aac, m4a to mp3 at once with ffmpeg and php (not ffmpeg-php)? So if this: ffmpeg -i son_origine.avi -vn -ar 44100 -ac 2 -ab 192 -f ...
1
vote
1answer
406 views

Linux based mp3 to wmv converter

Is there some software library that can i can interact with via command line (no GUI business) exist that can take an mp3 and output wmv or a similar format? Can ffmpeg do this? I found this ...
0
votes
3answers
464 views

FFmpeg can 'encode' to mp3, but will not accept an 'input' mp3

FYI: Fedora 8 running on Amazon EC2... Having a difficult time with FFmpeg doing a (what should be pretty simple) conversion. I can get FFmpeg to encode an mp3 file from an m4a file using the ...
0
votes
1answer
809 views

FFMPEG-PHP Code example to trim MP3 file

I've searched here and online,. and have not found clear PHP examples for taking a single MP3 file, and trimming it to a smaller file (removing both beginning and end portions and retaining only the ...
1
vote
2answers
986 views

Recording a mp3 stream with FFMPEG and drop-outs

I hope someone can give me pointer, I have a php script that runs the command below to record an live radio mp3 stream to create hour long mp3 recordings. It works very well for my purpose. The only ...
2
votes
3answers
2k views

Convert audio files in PHP

I need to convert AMR audio file to MP3. How can I make it in PHP without FFMPEG (i have no permissions to install it on the server). Please help me.
-2
votes
1answer
381 views

How can I trim mp3 file? [duplicate]

Possible Duplicate: Crop MP3 to first 30 seconds I'm using this class http://www.phpclasses.org/package/5275-PHP-Manipulate-MP3-audio-files.html but I get an error, I want to create a ...
0
votes
1answer
252 views

How do I extract Xing/LAME frames using ffmpeg?

Using a program which already makes use of ffmpeg for audio processing, I would like to extract and parse Xing/LAME style mp3 frames. (unlike other mp3 metadata, xing/lame metadata is stored in dummy ...
2
votes
0answers
790 views

Merging multiple mp3 files “overlayered” not sequential in a single mp3 file in .net?

My recent update with my latest discussion over this problem is displayed in bottom Alright so i'm trying to build a platform where my silverlight app is going to merge different instrument audios ...

1 2