双声道pcm文件拆解成左右两个单声道文件

本人写过ffmpeg读取系统声音,生成音频原始流pcm文件

文中定义的channel_layout 为AV_CH_LAYOUT_STEREO,即左右通道的双通道,现在将这个双通道文件拆解成左右两个通道文件。

本文的双通道文件的采样位数是16,即双字节,其存储对于下面的第四个。
在这里插入图片描述
故拆解变得比较简单,如下所示:

void CSeparateTwoChannel::StartSeparate(const char *pPcmFile, const char *pLeftChannelFile, const char *pRightChannelFile)
{
	fpPcm = fopen(pPcmFile, "rb");
	fpLeftChannel = fopen(pLeftChannelFile, "wb");
	fpRightChannel = fopen(pRightChannelFile, "wb");

	int iReaded = 0;
	char szPcm[4] = { 0 };
	while (1)
	{
		iReaded = fread(&szPcm, 4, 1, fpPcm);
		if (iReaded <= 0)
		{
			break;
		}
		fwrite(szPcm, 2, 1, fpLeftChannel);
		fwrite(szPcm + 2, 2, 1, fpRightChannel);
	}
	fclose(fpPcm);
	fclose(fpLeftChannel);
	fclose(fpRightChannel);

}

代码结构如下:
在这里插入图片描述

其中SeparateTwoChannelToOneChannel.cpp的代码如下:

// SeparateTwoChannelToOneChannel.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include <stdio.h>
#include "SeparateTwoChannel.h"

int main()
{
	const char *pFilePcm = "E:\\learn\\ffmpeg\\FfmpegGeneratePcm\\x64\\Release\\pcm_inner_audio_feiniao_2channel.pcm";
	const char *pFileLeftChannel = "E:\\learn\\ffmpeg\\FfmpegGeneratePcm\\x64\\Release\\pcm_inner_audio_feiniao_2channel_leftchannel.pcm";
	const char *pFileRightChannel = "E:\\learn\\ffmpeg\\FfmpegGeneratePcm\\x64\\Release\\pcm_inner_audio_feiniao_2channel_rightchannel.pcm";

	CSeparateTwoChannel cSeparateTwoChannel;
	cSeparateTwoChannel.StartSeparate(pFilePcm, pFileLeftChannel, pFileRightChannel);
	return 0;
}



SeparateTwoChannel.h的代码如下:

#pragma once

#include <Windows.h>
#include <stdio.h>

class CSeparateTwoChannel
{
public:
	CSeparateTwoChannel();
	~CSeparateTwoChannel();
public:
	void StartSeparate(const char *pPcmFile, const char *pLeftChannelFile, const char *pRightChannelFile);
private:
	FILE *fpPcm = NULL;
	FILE *fpLeftChannel = NULL;
	FILE *fpRightChannel = NULL;
};



SeparateTwoChannel.cpp的代码如下:

#include "SeparateTwoChannel.h"

CSeparateTwoChannel::CSeparateTwoChannel()
{

}

CSeparateTwoChannel::~CSeparateTwoChannel()
{

}

void CSeparateTwoChannel::StartSeparate(const char *pPcmFile, const char *pLeftChannelFile, const char *pRightChannelFile)
{
	fpPcm = fopen(pPcmFile, "rb");
	fpLeftChannel = fopen(pLeftChannelFile, "wb");
	fpRightChannel = fopen(pRightChannelFile, "wb");

	int iReaded = 0;
	char szPcm[4] = { 0 };
	while (1)
	{
		iReaded = fread(&szPcm, 4, 1, fpPcm);
		if (iReaded <= 0)
		{
			break;
		}
		fwrite(szPcm, 2, 1, fpLeftChannel);
		fwrite(szPcm + 2, 2, 1, fpRightChannel);
	}
	fclose(fpPcm);
	fclose(fpLeftChannel);
	fclose(fpRightChannel);

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值