AnJoiner

Results 14 comments of AnJoiner

> 我改转码去手动选择,或者去添加这个编码器,在这个框架下面 确认一下,你使用的是哪一个?第一个全部编码都包含 ``` // 全部编解码-体积较大 implementation 'com.coder.command:ffmpeg:${latestVersion}' // 部分常用编解码-体积较小,比上面引入减少大约6M implementation 'com.coder.command:ffmpeg-mini:${latestVersion}' ```

> implementation 'com.coder.command:ffmpeg:1.1.5' > 应用的是这个包,因为他说这个全部编解码,考虑到spx不一定常见,所以我引用了这个 把你使用的命令发我一下

> > > implementation 'com.coder.command:ffmpeg:1.1.5' > > > 应用的是这个包,因为他说这个全部编解码,考虑到spx不一定常见,所以我引用了这个 > > > > > > 把你使用的命令发我一下 > > val src = obtainSoundFile()?.listFiles()?.get(0)?.absolutePath ?: "" > val target = obtainSoundFile()?.absolutePath +...

> 那我要怎么弄呢,或者我要往那个方向研究一下呢,刚刚接触转码这个领域 可以自己编译一个,如果你只是想使用编码为.spx后缀的文件,建议你只需要编译[【speex】](https://www.speex.org/),可以参考这篇文章[《Android Speex编译及使用》](https://blog.csdn.net/HACK__ZSMJ/article/details/50135899)

> 您好 我在使用 > > ``` > FFmpegCommand.runSync(cmd.split(" ")); > ``` > > 实现rtsp转码rtmp的时候 一开始是正常的 但是发送的时候会报一句 > > ``` > ffmpeg-cmd: : No such file or directory > ``` >...

> 类似地,在电脑上可以加双引号、单引号或转义符解决 > 如: > > ``` > ffmpeg -y -i "IMG_0946 (1).mov" -vcodec copy -acodec copy 1111.mp4 > ffmpeg -y -i 'IMG_0946 (1).mov' -vcodec copy -acodec copy 1111.mp4 >...

> 视频拼接,demo里面两个相同的视频能拼接,但是不同的视频拼接起来,只能播放前面那个视频,后面的视频只有声音 页面卡主了 确认两个视频的音频流编解码是否一致

> 使用命令添加 1、fmpeg -y -i /storage/emulated/0/video1/p_v_au.mp4 -vf 'movie=/storage/emulated/0/video1/wt.png[watermark];[in][watermark] overlay=10:10[out]' /storage/emulated/0/video1/output3_2.mp4 2、ffmpeg -y -i /storage/emulated/0/video1/p_v_au.mp4 -vf subtitles=/storage/emulated/0/video1/s1.srt /storage/emulated/0/video1/output3_1.mp4 3、ffmpeg -y -i /storage/emulated/0/video1/p_v_au.mp4 -i /storage/emulated/0/video1/s1.srt -c copy -c:s mov_text /storage/emulated/0/video1/p_v_au_out.mp4 4、fmpeg -y...