- 浏览: 1580791 次
- 性别:
- 来自: 北京
最新评论
-
qq_24800465:
请问这里的库从哪下载啊
ffmpeg所有的编码器(encoders) -
neusoft_jerry:
貌似这里没用到StreamingAMFChannel哦,只是用 ...
Flex BlazeDS 推送技术 -
anyone:
感谢你的博文,看了受益匪浅
记住这个IntelliJ IDEA的编译设置 -
keren:
现在还有什么应用需要用flex来开发的?
flex tree的展开,关闭,添加、删除子节点 -
neusoft_jerry:
简洁明快,好贴好贴!楼主V5!
flex tree的展开,关闭,添加、删除子节点
文章列表
rem DOS get current time yyyy-mm-dd hhmiss week
rem =======================
rem get yyyy/mm/dd
set mydate=%DATE:~0,10%
echo %mydate%
rem =======================
rem get yyyy
set yyyy=%DATE:~0,4%
echo %yyyy%
rem =======================
rem get mm
set mm=%DATE:~5,2%
echo %mm%
rem ======= ...
假如事务拦截器设在 service包这层:
<aop:config>
<aop:advisor pointcut="execution(* *..service.*.*(..))" advice-ref="txAdvice-hibernate" order="0"/>
<!--<aop:advisor id="hibernateTx" advice-ref="txAdvice" pointcut="execution(* *..servi ...
Oracle数据库的另外一种导入导出方法:
【Oracle10g 和 Oracle11g都可以用】
--创建dmp文件存放的目录对象
create or replace directory tempdp as 'D:\dmp';
--给用户授权
grant read,write on directory tempdp to ams;
--用数据棒导入数据命令
impdp ams/ams DIRECTORY=tempdp DUMPFILE=da.dmp schemas=ams,md_100
--数据棒导出命令
expdp ams/ams DIRECTORY=temp ...
我们需要动态获取后台的图片,现举例如下:
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title>下载img</title>
</head>
<body>
<img src="http://localhost:8400/mlams/img1.jsp?NoDecorate=1" widht="300" height="250" ...
【64位ubuntu下安装32位jdk注意事项】
使用tar包安装(参考此方法),但在安装后运行java命令得到如下结果:
aries@ubuntu:~$ java
bash: /usr/local/lib/java/bin/java: No such file or directory
提示无法找到文件,但文件实际存在,查找后发现是因为使用了32位程序的结果,ubuntu默认未安装32位程序的loader
sudo apt-get install libc6-i386
另外,一些常用的32位库
sudo apt-get install lib32asound2 lib32z1 lib32st ...
D:\ffmpeg7-win32-static\bin>ffmpeg -filters
ffmpeg version N-49044-g89afa63 Copyright (c) 2000-2013 the FFmpeg developers
built on Jan 19 2013 20:36:06 with gcc 4.7.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontcon ...
支持流的输入输出。
D:\ffmpeg7-win32-static\bin>ffmpeg -protocols
ffmpeg version N-49044-g89afa63 Copyright (c) 2000-2013 the FFmpeg
built on Jan 19 2013 20:36:06 with gcc 4.7.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threa
libavutil 52. 15.100 / 52. 15.100
libav ...
入门和官网点击这里http://ffmpeg.org/ffmpeg.html
ffmpeg的音频视频转换过程:
知道了这些过程,然后看 命令和参数和编码、解码器,就知道怎么转了。以下几个命令最有用。
ffmpeg -h full
ffmpeg -formats
ffmpeg -decodes
ffmpeg -encodes
显示参数命令
ffmpeg -h full
得到:
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Getting help:
-h -- print basic options
-h long -- print more options
-h full -- print all options (including all format and co ...
D:\ffmpeg7-win32-static\bin>ffmpeg -decoders
ffmpeg version N-49044-g89afa63 Copyright (c) 2000-2013 the FFmpeg developers
built on Jan 19 2013 20:36:06 with gcc 4.7.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --
libavutil ...
在格式转换的是,经常不知道要用那个编码器,在这里列出所有的编码器,以备用。
举例:
ffmpeg -i INPUT -acodec libvo_aacenc -b:a 128k -vcodec libx264 -b:v 1200k -flags +aic+mv4 -y OUTPUT
上面的 libvo_aacenc 和 libx264都在下面有。
还有常用的 -f flv -f mp4 -f mpegts等。
D:\ffmpeg7-win32-static\bin>ffmpeg -encoders
ffmpeg version N-49044-g89afa63 Copyrig ...
D:\ffmpeg7-win32-static\bin>ffmpeg -formats
ffmpeg version N-49044-g89afa63 Copyright (c) 2000-2013 the FFmpeg developers
built on Jan 19 2013 20:36:06 with gcc 4.7.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-font
...
websphere6.1补丁下载地址
- 博客分类:
- websphere
http://kyle.itpub.net/post/1626/491663
websphere6.1补丁下载地址
http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg27004980#ver61
WAS6.1各操作平台补丁IBM 官方下载地址:
http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg24025185
各操作平台补丁FTP下载入口:
ftp://ftp.software.ibm.com/software/websphere/appserv/su ...
(参考:http://space.itpub.net/519536/viewspace-713198)
oracle的参数需要调整:
以sys登录oracle控制台,然后:
alter system set processes=500 scope=spfile;
alter system set sessions=500 scope=spfile;(这个可以不要)
由于processes参数是静态参数,调整时需要使用“scope=spfile”选项进行调整。
然后重启oracle服务:
shutdown immediate;
startup;
确认调整结果:
show p ...
Mac OS 启用root的简单方法
- 博客分类:
- MacOS
在终端里面输入
sudo passwd root
就是给root设置新的密码,就ok了。