| View previous topic :: View next topic |
| Author |
Message |
chandru155
Joined: 03 Dec 2008 Posts: 158 Location: chennai,india
|
Posted: Sun Dec 13, 2009 7:15 am Post subject: Best software for amr to mp3 conversion? |
|
|
I tried more than 10 softwares for converting amr to mp3. But the mp3 file size is around 10times bigger than the original amr file. But i found one software in www.amr-mp3.net which gives me good quality with same size as amr file. But its shareware. Can you guys suggest me software like this which is available for free(i.e freeware). Urgent.....
Thanks in advance |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
|
| Back to top |
|
 |
chandru155
Joined: 03 Dec 2008 Posts: 158 Location: chennai,india
|
Posted: Sun Dec 13, 2009 7:29 am Post subject: |
|
|
| thanks.. but tried them already.. |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Sun Dec 13, 2009 8:23 am Post subject: |
|
|
I used formatfactory for Nokia E51 mobilphone to convert youtube flv/mp4
http://www.pcfreetime.com/ |
|
| Back to top |
|
 |
chandra Guest
|
Posted: Sun Dec 13, 2009 8:52 am Post subject: |
|
|
| tried that one also.. for the amr file size of 2mb, it produced 22mb mp3 file |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Mon Dec 14, 2009 10:17 pm Post subject: |
|
|
thank you SKAN
I like to have freeware standalone programs with commandlines combine with ahk
I must read the manual, I tried to convert downloaded video from YT to MP3, it worked
| Code: | run,%comspec% /k ffmpeg.exe -i test.mp4 -ab 192k target2.mp3
|
|
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
Posted: Mon Dec 14, 2009 10:52 pm Post subject: |
|
|
We can also convert Image sequence to Movie..
The following is a PNG screenshot of Captionless-AHK-GUI listing the folder contents with Loop.
[img]http://www.autohotkey.net/~goyyah/DXM-205%20X-Files%20%281996%29.pn*[/img]
I take one screenshot, make 300 copies ( img001.png to img300.png ) and build a 10 second Index.mpg file with:
| Code: | | RunWait ffmpeg.exe -f image2 -i img`%03d.png -sameq -r 29.970 index.mpg,, |
Last edited by SKAN on Sun Dec 20, 2009 6:47 am; edited 1 time in total |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Tue Dec 15, 2009 7:56 am Post subject: |
|
|
very interesting, SKAN, thank you for example and link
this converts downloaded YT video to mobilphone Nokia E51 (320*240)
http://ffmpeg.org/documentation.html
| Code: | ;--- http://ffmpeg.org/documentation.html
run,%comspec% /k ffmpeg.exe -i test.mp4 -s qvga -r 25 target_V1.mp4 ;qvga=320*240
|
|
|
| Back to top |
|
 |
tomoe_uehara
Joined: 05 Sep 2009 Posts: 1591 Location: Somewhere near you
|
Posted: Sun Dec 27, 2009 8:50 am Post subject: |
|
|
Hmhmhm... Maybe you want to use the GUI version of ffmpeg instead of the original command line, such as WinFF or AutoFF or anything. Just search for them at your search engine, but always try to find the newest version.
I confused when I started ffmpeg-ing for the first time, so I tried to write a GUI for ffmpeg. _________________
The quick onyx goblin jumps over the lazy dwarf |
|
| Back to top |
|
 |
|