This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-I rc mms://a33.l12993146032.c129931.g.lm.akamaistream.net/D/33/129931/v0001/reflector:46032 :sout='#transcode{acodec=mp4a}:std{access=file,mux=mp4,dst=test.mp4} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recording.sh 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns:ivy="antlib:org.apache.ivy.ant"> | |
<condition property="ivy.home" value="${env.IVY_HOME}"> | |
<isset property="env.IVY_HOME" /> | |
</condition> | |
<property name="ivy.home" value="${user.home}/.ivy2" /> | |
<property name="ivy.install.dir" value="${ivy.home}/lib" /> | |
<property name="ivy.install.dest" value="${ivy.install.dir}/ivy.jar" /> | |
<target name="-check-ivy-user-installed" description="check ivy jar file existence on user's ivy home"> | |
<available file="${ivy.install.dest}" property="ivy.install.dest.exisits" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package controllers | |
import play.api._ | |
import play.api.mvc._ | |
/** | |
* 管理者のアカウントを取り扱うモジュール | |
*/ | |
trait AdminSecure { | |
import play.api.mvc.Results._ |
OlderNewer