在我的LAMP堆栈上遇到PHP问题:根本没有解析PHP脚本.我在清除机器上设置了Ubuntu 13.10 ......我现在看到只有页面上的清晰HTML,但PHP标签就像文本一样
实际上,我有:
$/usr/sbin/apache2ctl status | grep版本
Server Version: Apache/2.4.6 (Ubuntu) PHP/5.5.3-1ubuntu2.1
Run Code Online (Sandbox Code Playgroud)
$ tail -n 1 /var/log/apache2/error.log
[Sat Dec 14 19:33:16.307184 2013] [core:notice] [pid 15457] AH00094: Command line: '/usr/sbin/apache2'
Run Code Online (Sandbox Code Playgroud)
$ apache2ctl -S
VirtualHost configuration:
*:80 is a NameVirtualHost
default server videosurgeon.ll (/etc/apache2/sites-enabled/vs.conf:1)
port 80 namevhost videosurgeon.ll (/etc/apache2/sites-enabled/vs.conf:1)
port 80 namevhost videosurgeon.ll (/etc/apache2/sites-enabled/vs.conf:1)
ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/lock/apache2" mechanism=fcntl
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
Mutex rewrite-map: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG …Run Code Online (Sandbox Code Playgroud) 我早些时候写过:
ffmpeg -i input.mp4 -sameq output.mp3
Run Code Online (Sandbox Code Playgroud)
...从而从视频文件接收音频.Ffmpeg刚刚取出或将音频转换为具有适当质量的mp3.全部归功于关键:-sameq [使用相同的量化器作为源]
现在在Ubuntu而不是ffmpeg我们有libav和那里(在avcomv的人)我看到没有-sameq键.嗯,这是一个问题:我现在要做什么?..
我现在要做的是获得与原版相同质量的转换音频文件?
PS.-sameq:使用相同的量化器作为源(暗示VBR).
$ man ffmpeg | col -b > ./man_ffmpeg
Run Code Online (Sandbox Code Playgroud)
这个man_ffmpeg在那里:http://pastebin.com/qYxz1M1E
FFMPEG(1)
NAME
ffmpeg - ffmpeg video converter
SYNOPSIS
ffmpeg [[infile options][-i infile]]... {[outfile options] outfile}...
...
...
...
-sameq
Use same quantizer as source (implies VBR).
...
...
...
SEE ALSO
avplay(1), avprobe(1), avserver(1) and the Libav HTML documentation
AUTHORS
The Libav developers
2014-02-06
FFMPEG(1)
Run Code Online (Sandbox Code Playgroud)