使用 FB like 按钮分享 mp3
我正在尝试使用 FB 之类的社交插件从我的网站在 facebook 上分享 MP3。我允许用户上传他们自己创建的 mp3。上传完成后,我为歌曲和艺术家名称以及可选的图像字段添加 ID3 标签(V1 和 V2.3)。 然而,当其中一张 mp3 在 Facebook 上共享时,歌曲名称和艺术家姓名始终为空(未知标题、未知艺术家)。 有谁知道 facebook 使用什么来提取 mp3 信息? 预先感谢您的任何帮助, -一个
I'm trying to share MP3s on facebook from my website using the FB like social plugin. I allow users to upload their own created mp3s. When the upload is complete I add ID3 tags (both V1 and V2.3) for song and artist name and an optional image field.
However, when one of the mp3s is shared on facebook, the song name and artist name are always blank (Unknown Title, Unknown Artist).
Does anyone know what facebook uses to extract mp3 info?
Thanks in advance for any help,
-A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到类似的问题。对于 FB MP3 播放器循环播放的 3 个字段,我得到了艺术家的名字、“未知专辑”和“未知艺术家”。我填写了标题、艺术家、作曲家、专辑和专辑艺术家字段。我使用
MP3tag.de 2.48
、ID3V1
和IDV2.3
ISO-8859-1
。Quora 建议 FB 尝试解析文件名:
http://www.quora.com/Does-Facebook-support-ID3 -音频标记
这适合我的数据:我的文件名是
YYYYMMDD_Surname_FirstName.mp3
,所以看起来 FB 正在将名称选择为“Surname FirstName”并猜测它是标题。手动共享 MP3 链接时,FB 允许您更改艺术家和专辑:
http://www.ehow.com/how_5958345_upload-mp3-facebook.html
在自动化过程中,我想您需要找出文件名的解析约定。
I see similar problems. For the 3 fields the FB MP3 player cycles through I get the name of the artist, "Unknown Album", and "Unknown Artist". I have the Title, Artist, Composer, Album and Album Artist fields filled in. I use
MP3tag.de 2.48
,ID3V1
andIDV2.3
ISO-8859-1
.Quora suggests FB tries to parse the file name:
http://www.quora.com/Does-Facebook-support-ID3-audio-tagging
That would fit my data: my filenames are
YYYYMMDD_Surname_FirstName.mp3
, so it looks like FB is picking up the name as "Surname FirstName" and guessing it is the title.When sharing an MP3 link manually, FB lets you change the artist and album:
http://www.ehow.com/how_5958345_upload-mp3-facebook.html
In an automated process, I guess you need to figure out the parsing convention for the filename.