로그인
회원가입
FrostK
노트
ffmpeg mp4 convert
관리자
0
8,881
글주소
2018-10-04 18:40:42
출처 / Link
https://www.bugcodemaster.com/article/convert-videos-mp4-format-using-ffmpeg
29
https://gist.github.com/BlackLee/49cd6ae5cf6fbfc8651c
29
×
댓글등록
이름
비밀번호
목록
이전글
다음글
노트
정렬하기
날짜순
조회수
댓글수
제목+내용
제목
내용
회원명
회원아이디
크롬 확장프로그램 본문접근 예제
manifest.json `json { "name": "chrome-basic-extension", "version": "0.0.1", "manifest_version": 2, "description": "크롬 기초 확장 프로그램", "homepage_url": "https://hiseon.me", …
Date
2018-11-01
By
관리자
Views
8,637
크롬 확장프로그램 본문접근 예제
Android 키해시 생성
code `java @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_facebook_hash_key); try { …
Date
2018-11-01
By
관리자
Views
8,216
Android 키해시 생성
php header
`php header("Content-Type: text/plain"); header("Content-Type: text/html"); `
Date
2018-11-01
By
관리자
Views
8,101
php header
굴림 폰트
비트맵폰트 최강 기본폰트 굴림!
Date
2018-10-23
By
관리자
Views
8,309
굴림 폰트
jQuery isVisible
`js //check if exist and is visible function isVisible(id) { var element = $('#' + id); if (element.length > 0 && element.css('visibility') !== 'hidden' && element.css('display') !== 'none…
Date
2018-10-17
By
관리자
Views
8,192
jQuery isVisible
jQuery ready
`js // A $( document ).ready() block. $( document ).ready(function() { console.log( "ready!" ); }); // Shorthand for $( document ).ready() $(function() { console.log( "ready!" ); });…
Date
2018-10-17
By
관리자
Views
8,087
jQuery ready
Mysql DATE DEFAULT '0000-00-00 00:00:00'
>updated datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ERROR 1067 (42000): Invalid default value for 'updated' my.cnf ` sql_mode = "NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_A…
Date
2018-10-17
By
관리자
Views
8,119
Mysql DATE DEFAULT '0000-00-00 00:00:00'
Homebrew Services
brew services >$ brew services start mysql ==>Successfully started mysql (label: homebrew.mxcl.mysql) >$ brew services start mysql ==> Successfully started mysql (label: homebrew.mxcl.mysql) …
Date
2018-10-17
By
관리자
Views
8,454
Homebrew Services
android postDelayed
`java @Override public void onClick(final View v) { // Give some time to the ripple to finish the effect if (onItemClickListener != null) { new Handler().postDelayed(new Runnable() { @Over…
Date
2018-10-16
By
관리자
Views
9,555
Comment
1
android postDelayed
개발 프로젝트 산출물 정리
분석 1.1. 현업요구사항정의서 : 해당 프로젝트를 수행하는 가장 기본이 되며 고객의 needs을 담고 있는 문서입니다. 이를 통해 다양한 스펙산정이 가능합니다. 이부분에서 요구ID를 도출합니다. 1.2. 기능챠트 : 현업요구사항을 근간으로 큰 카테고리를 만들어 한눈에 해당 프로젝트가 무슨 …
Date
2018-10-16
By
관리자
Views
8,827
개발 프로젝트 산출물 정리
서든어택 조준점 색상인식 발사
옛날 버전 오토잇, 오토핫키 소스
Date
2018-10-14
By
관리자
Views
12,072
Comment
1
서든어택 조준점 색상인식 발사
c# list sort
`cs List
list = new List
(); list.Sort(delegate (CaptionModel p1, CaptionModel p2) { return p1.tStart.CompareTo(p2.tStart); }); `
Date
2018-10-14
By
관리자
Views
8,452
c# list sort
c++ CreateToolhelp32Snapshot
`c++ include
include
include
include "detours.h" using namespace std; static HANDLE(WINAPI* pOpenProcess) (DWORD dwDesiredAccess, BOOL bInheritHandle, …
Date
2018-10-14
By
관리자
Views
10,686
c++ CreateToolhelp32Snapshot
android ViewPager에서 Fragment가 표시여부 확인방법
`java public class MyFragment extends Fragment { @Override public void setUserVisibleHint(boolean isVisibleToUser) { super.setUserVisibleHint(isVisibleToUser); if (isVisib…
Date
2018-10-12
By
관리자
Views
9,038
android ViewPager에서 Fragment가 표시여부 확인방법
PHP/MySql 5.6 다운그레이드
우분투 환경 `shell 아파치 apt-get install apache2 PHP add-apt-repository ppa:ondrej/php apt-get update apt-get install imagemagick apt-get install php5.6 libapache2-mod-php5.6 php5.6-curl php5.6-gd …
Date
2018-10-11
By
관리자
Views
8,791
PHP/MySql 5.6 다운그레이드
android How to clear gradle cache?
On Windows: %USER_HOME%\.gradle/caches/ On Mac/Unix: $HOME/.gradle/caches/ >rm -rf $HOME/.gradle/caches/ On Windows: >gradlew cleanBuildCache On Mac or Linux: >./gradlew cleanBuildCache
Date
2018-10-11
By
관리자
Views
9,533
android How to clear gradle cache?
c++ pubg d3d hook
`c++ include
include
include
pragma comment(lib, "d3d11.lib") include "FW1FontWrapper\FW1FontWrapper.h" include
pragma comment(lib, "BeaEng…
Date
2018-10-10
By
관리자
Views
10,171
c++ pubg d3d hook
youtube, facebook video play
` https://www.youtube.com/embed/
?rel=0&showinfo=0&color=white&iv_load_policy=3 https://www.facebook.com/video/embed?video_id=
https://www.facebook.com/plugins/video.php?href=
&width=500…
Date
2018-10-10
By
관리자
Views
8,442
youtube, facebook video play
unity VideoPlayer 다운로드 플레이
`cs private void Start() { StartCoroutine(this.loadVideoFromThisURL(videoUrl)); } [SerializeField] internal UnityEngine.Video.VideoPlayer myVideoPlayer; string videoUrl ="http://www.quirk…
Date
2018-10-08
By
관리자
Views
10,883
unity VideoPlayer 다운로드 플레이
php 크롬 익스 파일 다운로드 한글깨짐
iconv, mb_convert_encoding 함수를 이용해 utf8,euc-kr,cp949 캐릭터셋을 변경하면 두개의 브라우저 중 하나가 꼭 깨지는 현상 발생할때 사용. `php function is_ie() { if(!isset($_SERVER['HTTP_USER_AGENT'])) return false; i…
Date
2018-10-05
By
관리자
Views
10,794
php 크롬 익스 파일 다운로드 한글깨짐
목록
처음
14
15
16
17
18
19
20
21
22
최근 게시물
fullPage extensions drop-effec…
three.js 경계선 부드럽게 보이도록 설정
게임메이커 data.win 파일 언팩
영웅모집 트레이너
도커 캐시 삭제
최근 댓글
가입어떻게하나요?
나이스 좋은 자료입니다 감사합니다 베타 유튜버가 사용하…
엘리온 낚시 메크로 판매합니다 https://open.…
회원가입이 안돼서
[email protected]
…
강의가능할까요
[email protected]
통계
방문자 :
4555 / 1588776
회원 :
1
게시글 :
432
댓글 :
18
수행시간 :
0.2382초
Access IP :
18.116.28.79
CPU Usage :
0.1%
DISK Usage :
39.98%