English 中文(简体)
录像带的密码
原标题:Embed code in video file
  • 时间:2012-01-11 15:26:10
  •  标签:
  • php
  • video

如果问题不明确,我会想解释。

I m working on an existing PHP download script for videos and some parts of it are broken. There s code in there that s supposed to place a specific member code inside the video file before download, but it doesn t work. Here s the code:

//embed user s code in video file
$fpTarget = fopen($filename, "a");
fwrite($fpTarget, $member_code);
fclose($fpTarget);

成员——代码为随机6-指示代码。

现在,如果我是文本档案,那将给我带来意义,但既然它有录像档案,那么这怎么可能奏效,应该做什么? 如果在录像中添加了成员代码,那么我如何在下载后看到它? 我没有录像档案的经验,因此,我们不了解任何帮助(同样欢迎修改现行法典或新法典)。

我很抱歉,我可以更确切地描述一下该法典应该做些什么,我试图把这一点说出来。

最佳回答

视录像的形式/类型而定,它可以工作。 MPG的档案在档案中相当宽容“噪音”,而参与者将跳过你的代码,因为它不像有效的视频框架数据。

其它格式/角色可能不满意,因为格式要求某些数据与文件结尾具体相抵消,现在你将数据按6个特性转移。

最好要看一下,重新启用的任何形式是否在其规格中规定了元数据。 例如,在某个地方,人们可能支持一个评论领域,这样你就可以简单地把该守则化为行动。

然而,如果你为了安全或跟踪未经许可的视频分享而重新这样做,那么简单地将数字写成头盔就很容易绕过。 最好用的是把录像带上水,以便该密码包含在实际的录像数据中,这样,“这一录像只属于XYZ的成员”在玩.时就展示。

问题回答

你没有直接写到案卷的内容,与你一样,也没读到案卷。 如你所知,这实际上腐蚀了录像,你无法合理阅读这些信息。

关于音频/视频文件,你写上带有文件包的元数据。 如何进行包装,以及你能够做些什么,在很大程度上取决于档案所使用的集装箱格式。 (认为集装箱和编码是两种不同的东西。) 编码是用于编码视听格式,集装箱是储存该数据流的档案格式。

图书馆如getID3可能是一个良好的开端。 我从未使用过这个词,但似乎是你所期待的。 基本上,你要做的是,在集装箱内(该集装箱的事先确定价值,或者可能是一种习惯的关键/价值,等等)写上元数据的价值,这些价值将成为档案的一部分。 然后,在阅读档案时,可以取得这一数据。 (最后一部分在很大程度上取决于阅读档案的内容。) 这些数据是存在的,但并非每个参与者都关心。 你想与你通常看到/阅读的内部元数据相匹配。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签