Author Topic: Add .mp4 file type to next version of song reader on SX900  (Read 1397 times)

0 Members and 1 Guest are viewing this topic.

JMonast

  • Guest
Add .mp4 file type to next version of song reader on SX900
« on: December 29, 2020, 07:21:19 PM »
Hi all,

I don't know if someone in the R&D department at Yamaha is on this forum, but I would like to suggest to add more file type to the song reader on the PSR SX-900.  Right now it can read MIDI files and mp3+g files.

I do have tons of songs(w/karaoke videos) in the mp4 format.

If would be possible this in a coming version of the OS....

Thanks,

And a better 2021 year for all of you!

Hope we get rid of this ASAP....
 

Lucille Chung

  • Guest
Re: Add .mp4 file type to next version of song reader on SX900
« Reply #1 on: December 30, 2020, 12:32:38 AM »

Not sure if this is what you're after, but you can pull an mp3 from an mp4 with ffmpeg:
    ffmpeg -i video.mp4 -b:a 192K -vn music.mp3

You can then use/edit the mp3 and put it back into the mp4
    ffmpeg -i video.mp4 -i music.mp3 -preset ultrafast -crf 1 final.mp4

I use ffmpeg on linux, but there's also a windows and mac port.