Close

What are you looking for?

cancel
Showing results for 
Search instead for 
Did you mean: 

Songs not playing

(Topic created on: 24-08-2023 01:57 PM)
4609 Views
Pinkyji
Student
Options

I just received my s23 utra a day ago. I transferred everything from old phone and was trying to play my downloaded songs. It will not play. It says multiple media can not be played. Anyone knows how to fix it?  

0 Likes

1 Solution


Accepted Solutions
Solution
Pinkyji
Student
Options

I am using VLC.... still not playing 

View solution in context

0 Likes
6 REPLIES 6
-Robot-
Samsung Members Star ★
Options
What format is it in? Try with VLC
0 Likes
Solution
Pinkyji
Student
Options

I am using VLC.... still not playing 

0 Likes
-Robot-
Samsung Members Star ★
Options
Maybe files are corrupt
0 Likes
JAMES4578
Samsung Members Star ★★
Options

@Pinkyji   Format that will play natively with Samsung Music player are mp3, m4a, mp4, 3gp, 3ga, ogg, oga, aac, and flac. can you confirm the file types, if still issue with vlc you could try another app such as poweramp . A review of some apps here https://www.androidauthority.com/best-music-player-apps-for-android- 

I do not work for Samsung or make Samsung Products but provide independent advice and valuable contributions.


AlainReve
First Poster
Options

You put too much on your device. The same thing happened to me. I bulk downloaded music from my computer and then no music player app functioned (I tried several), vlc stopped functioning, etc... I don't know whether this is due to storage size, you could try converting flac files to mp3 (if you're not a purist). I certainly don't know why I received no warning! I have an additional memory card, maybe some files got stored there (or partially stored there) and it messed up... I'll fiddle a bit more :). I'll try to put some music on the memory card instead of in the "Music" folder, that kind of thing. If it fails, well, some of these songs I don't really listen to them all that often, time for a bit of housekeeping :).

 

0 Likes
AlainReve
First Poster
Options

Me again. It can come from "skin" problems. Flac files can contain links to pictures, which some players absolutely want to display, or from DRM (Digital Rights Management) associated with flac files. If you bought some music a while ago, you might have restrictions upon transferring these flac files to another device. There is a procedure, which depends upon where you bought them from (and upon whether you still have your login details for that web site, upon whether the web site still exists, etc.).

The simplest way is to convert them all to high quality mp3. It reduces the needed storage space by about half. You can use Audacity, but this is time consuming because you have to open all flac files one by one and then to export them as mp3. The advantage is that Audacity functions on all platforms (Windows, Mac and Linux).

In Ubuntu, the fastest way is the command line.

First, go to the folder and "clean" the file names. That is, get rid of spaces, brackets, single quotes etc. Single quotes really really have to go. A file called "01 Don't eat (my cake).flac" has to become something like "01_Dont_eat_my_cake.flac".

You can use the "rename" command:
rename 's/ToMatch/ToReplaceWith/' *

For example, to replace spaces in file names by underscore :
rename "s/ /_/g" *
To remove brackets you have to escape them:
rename 's/\(//' *
rename 's/\)//' *

Use ls to check the file names. Any file name surrounded by single quotes contains some improper character.

Convert :

For a single file:
ffmpeg -i sample1.flac -q:a 0 -map a output1.mp3

For all flac files in the folder:
for i in *.flac; do ffmpeg -i "$i" -q:a 0 -map a "${i%.*}.mp3"; done

The -q:a 0 means you want the best mp3 quality. The resulting mp3 files are nearly as good as the original files (I can't hear the difference).

Remove all possibly offending flac files from your android device (or test them one by one if you feel like it). Replace them with mp3 files.

0 Likes