首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    获取MP3信息

    很多时候,我们有必要的到一些歌曲的信息,比如歌手的专辑,歌手名 歌曲名,下面就是java写的获取MP3歌曲信息 首先加入 jid3lib-0.5.4.jar包   import java.io.IOException; import org.farng.mp3.MP3File; import org.farng.mp3.TagException; import org.farng.mp3.id3.AbstractID3v2; import org.farng.mp3.id3.ID3v1; import org.farng.mp3.lyrics3.AbstractLyrics3;     public class GetparmsMp3 {     public static void main(String[] args) {                  try {                       MP3File file = new MP3File("D:\\upload\\Kalimba.mp3");//1,lyrics                  AbstractID3v2 id3v2 = file.getID3v2Tag();                  ID3v1 id3v1 = file.getID3v1Tag();                  if (id3v2 != null) {                      System.out.println("id3v2");  //                     if("".equals(id3v2.getAlbumTitle())) { //                        String s= id3v2.getSongTitle(); //                        String b ="a"; //                     }                  System.out.println(id3v2.getAlbumTitle());//专辑名                   String a= id3v2.getSongTitle();                  System.out.println(a+"111");                  System.out.println(id3v2.getSongTitle());//歌曲名                   System.out.println(id3v2.getLeadArtist());//歌手                  } else {                      System.out.println("id3v1");                      System.out.println(id3v1.getAlbumTitle());                      System.out.println(id3v1.getSongTitle());                      System.out.println(id3v1.getLeadArtist());                  }                       AbstractLyrics3 lrc3Tag = file.getLyrics3Tag();                  if (lrc3Tag != null) {                      String lyrics = lrc3Tag.getSongLyric();                      System.out.println(lyrics);                  }              } catch (IOException e) {                  e.printStackTrace();              } catch (TagException e) {                  e.printStackTrace();              }              System.out.println("over");      }     }

    02

    Thrift编译错误('::malloc' has not been declared)

    问题版本:0.9.0 make[4]: Entering directory `/tmp/X/thrift-0.9.0/lib/cpp' /bin/sh ../../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../..  -I/usr/local/thirdparty/boost/include -I./src -I./src/thrift -I/usr/local/thirdparty/openssl/include -Wall -g -O2 -MT Thrift.lo -MD -MP -MF .deps/Thrift.Tpo -c -o Thrift.lo `test -f 'src/thrift/Thrift.cpp' || echo './'`src/thrift/Thrift.cpp libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/thirdparty/boost/include -I./src -I./src/thrift -I/usr/local/thirdparty/openssl/include -Wall -g -O2 -MT Thrift.lo -MD -MP -MF .deps/Thrift.Tpo -c src/thrift/Thrift.cpp  -fPIC -DPIC -o .libs/Thrift.o In file included from src/thrift/Thrift.cpp:22: /usr/lib/gcc/x86_64-redhat-linux/4.4.6/../../../../include/c++/4.4.6/cstdlib:119: error: '::malloc' has not been declared /usr/lib/gcc/x86_64-redhat-linux/4.4.6/../../../../include/c++/4.4.6/cstdlib:127: error: '::realloc' has not been declared src/thrift/Thrift.cpp: In member function 'void apache::thrift::TOutput::printf(const char*, ...)': src/thrift/Thrift.cpp:46: error: 'malloc' was not declared in this scope make[4]: *** [Thrift.lo] Error 1 解决方法: 在成功执行configure后(在未执行configure之前找不到下列两行),修改与configure同目录下的config.h文件,将文件中的如下两行注释掉: #define malloc rpl_malloc #define realloc rpl_realloc 附1:安装Thrift命令行: ./configure --prefix=/usr/local/thirdparty/thrift-0.9.0 --with-boost=/usr/local/thirdparty/boost --with-libevent=/usr/local/thirdparty/libevent CPPFLAGS="-I/usr/local/thirdparty/openssl/include" LDFLAGS="-ldl -L/usr/local/thirdparty/openssl/lib" --with-qt4=no --with-c_glib=no --with-csharp=no --with-erlang=no --with-perl=no --with-ruby=no --with-haskell=no --with-go=no --with-d 当OpenSSL未以默认安装目录时,请注意上面的用法。 附2:相关博文: (安装thrift时,注意openssl参数)http://blog.chinaunix.net/uid-20682147-id-3399150.html 如果在使用Thrift时,编译遇到类似“TTransport.h:107: error: 'uint32_t' does not name a type”的错误,只需要在Thrift.h文件中增加一行:#include 。 Thrift.h文件位于make install后的include目录下,如果不知道在哪,可以使用find命令查找。

    03

    Android音频播放(本地/网络)绘制数据波形,根据特征有节奏的改变颜色

    上一期刚刚掀完桌子没多久《Android MP3录制,波形显示,音频权限兼容与播放》,就有小伙伴问我:“一个音频的网络地址,如何根据这个获取它的波形图?”··· WTF(ノಠ益ಠ)ノ彡┻━┻,那一瞬间那是热泪盈眶啊,为什么我就没想到呢···反正肯定不是为了再水一篇文章就对了<( ̄︶ ̄)>。

    我是DEMO

    02

    Python+selenium 实现趣头条的短视频自动上传与发布实例演示,同时支持抖音、快手、b站、小红书等平台的视频自动化同步发布

    - - - -系列文章- - - - Python+selenium 自动化 - 实现自动上传并发布抖音短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布快手短视频实例演示 Python+selenium 自动化 - 实现自动投稿、自动发布哔哩哔哩 B 站短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布小红书号短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布微视短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布百度好看短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布西瓜视频实例演示 Python+selenium 自动化 - 实现自动上传并发布微信视频号视频实例演示 Python+selenium 自动化 - 实现自动上传并发布搜狐号短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布一点号短视频实例演示 Python+selenium 自动化 - 实现自动上传并发布大风号短视频实例演示

    02

    python从linux下载文件_python gzip

    解决 python调用OpenCV 保存视频时使用”avc1″格式出现# Could not find encoder for codec id 27: Encoder not found的错误(此错误不能保存视频文件),以及使用”mpeg”格式出现的# OpenCV: FFMPEG: tag 0x6765706d/’mpeg’ is not supported with codec id 2 and format ‘mp4 / MP4 (MPEG-4 Part 14)’ # OpenCV: FFMPEG: fallback to use tag 0x7634706d/’mp4v’错误(此错误能保存视频并且能正常播放,但是经过flask传到客户端浏览器时不能播放) 编译avc1 x264 x265 vpx aac mp3lame opus aom 等格式视频的库以及编译完编译FFmpeg教程,其中编译libaom时我编译了两边才成功 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu 这是编译完支持各种格式的FFmpeg之后编译支持FFmpeg版的OpenCV链接 https://www.jianshu.com/p/f4ca1039eadf

    03
    领券