我正在使用覆盆子pi构建一个家庭监控并在python中编码,我正在尝试通过json编码将一些mp4文件发送到Laravel服务器,我试图在python上进行base64编码并解码PHP,但似乎当我收到它并保存它时文件被破坏。所以我想知道我怎么能这样做,还是有更好的方法呢?
我想知道是否可能是编码文件中有一部分缺失,因为我正在比较我发送的字符串与相同的字符串,但是将其恢复并显示为等于的假。
如果你想在python上检查我的代码,我就是这样做的,我用FFMPEG录制视频,视频实际上是有效的,如果我将带有pendrive的视频发送到我的电脑,它也能正常工作。
def record_video(self):
print('Recording')
url = 'http://127.0.0.1:8080/stream/video.mjpeg'
local_filename = url.split('/')[-1]
filename = time.strftime("%Y%m%d-%H%M%S")+'.mp4'
save_path = '/home/pi/Downloads/tesis/video'
completed_video= os.path.join(save_path, filename)
##using ffmpeg to record the video
pro = subprocess.Popen('ffmpeg -i '+url+' '+completed_video+' -y', stdout=subprocess.PIPE,
shell=True, preexec_fn=os.setsid)
time.sleep(10)
##stop the recording
os.killpg(os.getpgid(pro.pid), signal.SIGTERM)
print('Sending')
##reading the file wi rb(read byte)
with open(completed_video,'rb') as f:
##encode the video
encode_video = base64.b64encode(f.read())
##put it on the json file
json = {'ip_address': '10.10.10.110',
'date': time.strftime('%Y-%m-%d %H:%M:%S'),
'video': encode_video}
##make post request
r = self.api.post(json,'createvideo')
a = r.json()
print('send')
print(a)
path = pathlib.Path(completed_video) ##Im deleting the file after is send
path.unlink()
然后对于帖子请求我这样做:
def post(self,json,api):
return request(self.url+api, json, headers={'Accept': 'application/json'})
在我的php中解码mp4文件我正在这样做:
$this->validate(request(),[
'ip_address' => 'required',
'date' => 'required',
'video' => 'required'
]);
$device = Device::where('ip_address',request('ip_address'))->first();
$video_encode = request('video');
$decoded = base64_decode($video_encode);
$path = public_path().'/video/'.$device->id.'/';
$date = new \DateTime('now');
$stringdate = date_format($date, 'Y-m-d H:i:s');
$file_name = $path.str_random(8).'.mp4';
$file = fopen($file_name,'wb');
fwrite($file,$decoded);
fclose($file);
$video = Video::create([
'date' => request('date'),
'device_id' => $device->id,
'video' => $file_name
]);
return response()->json([ 'data' => $video]);
我设法创建一个文件,但似乎已经坏了。
答案 0 :(得分:1)
我希望this stackoverflow post了解如何使用请求帖子发送文件:
file_ = {'file': ('video.mp4', open('video.mp4', 'rb'))}
r = requests.post(upload_url, files=file_)
然后我会关注the laravel documentation如何管理存储上传的文件:
$path = request()->file->store('images');
您应该能够进行文件验证,并且不需要对数据进行基础编码。希望将open()
传递给file_
,让requests
处理文件。