OK, I can confirm that ffmpeg is installable with homebrew, and that it
will convert.

Here's the quick overview:

1.)     Install homebrew. There are several web pages that can guide on
this task. Here's just one:

https://brew.sh/


2.)     Use it to install ffmpeg at the terminal:

brew install ffmpeg

3.)     Use a command to extract your audio into a format you can use in
Amadeus. Here's an example that I keep in an executable script under
/usr/local/bin that provides me a 24-bit wav file. It could just as
easily be 16-bit.

<begin code>
#!/bin/bash
#Use ffmpeg to extract 24bit to audio.wav
#One argument is input file
ffmpeg -i "$1" -acodec pcm_s24le -ac 2 audio.wav
<end code>


The above should leave an audio.wav file in your current working
directory. Rename or further transform as needed.

If you want 16 bit instead of 24, just change that value in the
operational line above.

Good luck!

Janina

'Janina Sajka' via MacVisionaries writes:
> VLC will play those files, as will mplayer for osx.
> 
> These days I'm using ffmpeg to convert among formats when I need to do
> that, but I do that on the Linux command line. I would expect I could
> install the ffmpeg tool using Home Brew on my Mac, though, which would
> make conversion in the terminal quite straight forward.
> 
> Let me know if you want to know more about that.
> 
> Best,
> 
> Janina
> 
> 'Kristeen Hughes' via MacVisionaries writes:
> > I need to take a file created from Skype, which is an .mp4 file and convert 
> > it so that it will play on my Mac or IOS device. Does anyone know what app 
> > is best for doing this? I have opened the .mp4 files in Amadeus pro, but 
> > they don’t always work properly. Sometimes it does not get the whole file.
> > 
> > Thanks for any help you might have.
> > 
> > Kristeen
> > 
> > -- 
> > The following information is important for all members of the Mac 
> > Visionaries list.
> > 
> > If you have any questions or concerns about the running of this list, or if 
> > you feel that a member's post is inappropriate, please contact the owners 
> > or moderators directly rather than posting on the list itself.
> > 
> > Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at: 
> >  mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
> > caraqu...@caraquinn.com
> > 
> > The archives for this list can be searched at:
> > http://www.mail-archive.com/macvisionaries@googlegroups.com/
> > --- 
> > You received this message because you are subscribed to the Google Groups 
> > "MacVisionaries" group.
> > To unsubscribe from this group and stop receiving emails from it, send an 
> > email to macvisionaries+unsubscr...@googlegroups.com.
> > To post to this group, send email to macvisionaries@googlegroups.com.
> > Visit this group at https://groups.google.com/group/macvisionaries.
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msgid/macvisionaries/80A428F9-8F12-4EBF-AFCB-48219BF81D36%40icloud.com.
> > For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> 
> Janina Sajka
> 
> Linux Foundation Fellow
> Executive Chair, Accessibility Workgroup:     http://a11y.org
> 
> The World Wide Web Consortium (W3C), Web Accessibility Initiative (WAI)
> Chair, Accessible Platform Architectures      http://www.w3.org/wai/apa
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
> caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/macvisionaries/20190607141740.GW2837%40rednote.net.
> For more options, visit https://groups.google.com/d/optout.

-- 

Janina Sajka

Linux Foundation Fellow
Executive Chair, Accessibility Workgroup:       http://a11y.org

The World Wide Web Consortium (W3C), Web Accessibility Initiative (WAI)
Chair, Accessible Platform Architectures        http://www.w3.org/wai/apa

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/macvisionaries/20190607154122.GZ2837%40rednote.net.
For more options, visit https://groups.google.com/d/optout.

Reply via email to