'2018/11/05'에 해당되는 글 5건

  1. 2018.11.05 자바 유료화? 10
  2. 2018.11.05 ffmpeg concat
  3. 2018.11.05 jquery eq() get() 차이
  4. 2018.11.05 jquery selector와 document.getElementById 차이
  5. 2018.11.05 자바스크립트 절대값 abs()
Programming/Java2018. 11. 5. 15:16

간간히 이야기 나오던 녀석이긴 한데

기사가 뒷북인가.. 아니면 다른 변동사항이 있어서 다시 나온걸까?

[링크 : https://news.v.daum.net/v/20181105075205312]



아무튼.. 국내 JSP나 spring 으로 된 녀석들도 영향을 받을지 모르겠네?

'Programming > Java' 카테고리의 다른 글

jar 만들기 export  (0) 2019.01.03
Java SE 8 설치해보려고 했더니..  (2) 2019.01.03
자바 임베디드 JRE 라이센스?  (0) 2015.05.12
predefined annotation /java  (0) 2014.06.27
JUnit tutorial  (0) 2014.06.27
Posted by 구차니

ffmpeg로 동영상을 합치는 방법

코덱 설정하면 하나로 합칠순 있겠지만.. 단일 파일별로 특정 시간 영역을 자르긴 무리일려나?


16. Joining multiple video parts into one

FFmpeg will also join the multiple video parts and create a single video file.

Create join.txt file that contains the exact paths of the files that you want to join. All files should be same format (same codec). The path name of all files should be mentioned one by one like below.

/home/sk/myvideos/part1.mp4

/home/sk/myvideos/part2.mp4

/home/sk/myvideos/part3.mp4

/home/sk/myvideos/part4.mp4

Now, join all files using command:


$ ffmpeg -f concat -i join.txt -c copy output.mp4 


[링크 : https://www.ostechnix.com/20-ffmpeg-commands-beginners/]

'프로그램 사용 > ffmpeg & ffserver' 카테고리의 다른 글

ffmpeg 레이턴시 관련 옵션 조사  (0) 2018.12.16
ffmpeg / ffplay cli interactive interface  (0) 2018.11.30
ffmpeg concat  (0) 2018.10.10
ffmpeg huffyuv  (0) 2017.02.28
ffmpeg으로 컨테이너 변경하기  (0) 2016.12.01
Posted by 구차니
Programming/jquery2018. 11. 5. 14:34

get은 DOM 객체를 받는다면

eq는 jquery 객체를 받는 차이가 있다.


그래서 이전에.. canvas를 얻었을때 width나 scrollwidth 같은게

jquery 통해서 획득한 녀석은 받아내질 못했던 것으로 보인다.


Retrieve the DOM elements matched by the jQuery object. 

[링크 : https://api.jquery.com/get/]


Reduce the set of matched elements to the one at the specified index. 

[링크 : https://api.jquery.com/eq/]


[링크 : http://www.jquerybyexample.net/2013/04/jquery-difference-between-eq-and-get-method.html]

[링크 : https://fronteer.kr/bbs/view/250]



Posted by 구차니
Programming/jquery2018. 11. 5. 14:32

jquery 의 셀렉터로 잡은 녀석과

document.getElementById 로 잡은 녀석이 접근 가능한 내용이 다른데

원인은 jquery는 jquery에서 만든 object를 사용하고

document.getElementById 은 Object를 사용하기 때문

즉, 같은 객체가 아니기에 접근 가능한 항목이 다르다~


[링크 : https://www.simonewebdesign.it/difference-between-getelementbyid-jquery/]

[링크 : https://www.quora.com/What-are-the-differences-between-foo-and-document-getElementById-foo]

[링크 : https://api.jquery.com/get/]

'Programming > jquery' 카테고리의 다른 글

jquery를 이용하여 특정 테이블의 열로 이동하기  (0) 2018.11.06
jquery eq() get() 차이  (0) 2018.11.05
jquery trigger()  (0) 2018.10.25
jqeury ajax 수행 완료 기다리기  (0) 2018.10.23
jquery ajax data, header  (0) 2018.10.23
Posted by 구차니
Posted by 구차니