'logbook' 카테고리의 다른 글
[diary] 개발장비 업그레이드 (0) | 2018.02.01 |
---|---|
[소개] 협업도구 Microsoft Team Services (0) | 2017.11.08 |
[daily] 괴리감 (1) | 2017.07.11 |
[book]바딘Vaadin & 회계천재... (0) | 2017.06.12 |
5번째 봄이 끝났다. (0) | 2017.04.23 |
[diary] 개발장비 업그레이드 (0) | 2018.02.01 |
---|---|
[소개] 협업도구 Microsoft Team Services (0) | 2017.11.08 |
[daily] 괴리감 (1) | 2017.07.11 |
[book]바딘Vaadin & 회계천재... (0) | 2017.06.12 |
5번째 봄이 끝났다. (0) | 2017.04.23 |
세부에서 찍은 영상 일부가 카메라의 자이로 이상으로 180도 회전되는 상황이 발생했다.
이 영상을 우분투에서 어떻게 처리할지 찾아보다가 다음의 글을 발견했다.
https://askubuntu.com/questions/83711/how-can-i-rotate-a-video
여기서 알려준 명령어는
$ ffmpeg -i in.mov -vf "hflip" out.mov
mov 파일에 사용되는 코덱으로 정상적인 컨버팅이 되지 않는다.
[aac @ 0x1993ba0] The encoder 'aac' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.
$ ffmpeg -i in.mov -vf "vflip" out.mov
이렇게 반전된다.
다양한 옵션이 있으니
[ubuntu] 16.04 systemctl 없을 경우 (0) | 2017.07.26 |
---|---|
[Ubuntu] 사용자 계정 변경 후 마운트시 HDD 정보가 보이지 않는 경우 (0) | 2014.05.30 |
Ubuntu에 renv 설치 및 ruby 설치하기 (0) | 2014.02.28 |
우분투 기본폴더 설정 초기화하기 (0) | 2013.10.22 |
최신버전 nginx 설치하기 (0) | 2013.05.13 |
org.springframework.web.multipart.MultipartException: Could not parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location [**/tmp/tomcat.1220970741172837513.8080/work/Tomcat/localhost/ROOT]** is not valid at org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.parseRequest(StandardMultipartHttpServletRequest.java:111)
Linux Filesystem Hierarchy:Chapter 1. Linux Filesystem Hierarchy1.20. /tmp
This directory contains mostly files that are required temporarily. Many programs use this to create lock files and for temporary storage of data. Do not remove files from this directory unless you know exactly what you are doing! Many of these files are important for currently running programs and deleting them may result in a system crash. Usually it won't contain more than a few KB anyway. On most systems, this directory is cleared out at boot or at shutdown by the local system. The basis for this was historical precedent and common practice. However, it was not made a requirement because system administration is not within the scope of the FSSTND. For this reason people and programs must not assume that any files or directories in /tmp are preserved between invocations of the program. The reasoning behind this is for compliance with IEEE standard P1003.2 (POSIX, part 2).
신경 좀 써야겠다.
앱을 재시작하는 것으로 간단하게 대응했다.
해결방법은 찾아봐야겠다.
[springboot] 2.0.0 release!! 출시 (0) | 2018.03.02 |
---|---|
[springboot] 소스 경로 변경 및 소스코드 변경 (1) | 2017.11.11 |
[springboot] AWS Elastic Beanstalk NGINX 설정 (0) | 2017.05.31 |
[springboot] AWS Beanstalk 에서 SpringBoot 에 사용할 환경변수 정의 (0) | 2017.02.23 |
[springboot] 1.5.1 업글 후 javax.validation.ValidationException: HV000183: Unable to initialize 'javax.el.ExpressionFactory' 발생 문제 해결 (0) | 2017.02.19 |
어느 책을 보다가 .properties
파일에 구분자로 =
대신 :
를 기재한 것을 보고
라고 생각하고 열심히 찾아봤다. 그런데 java.util.Properties#load
메서드를 찾아보니 =
와 :
가 사용가능하다고 나와있다.
The key contains all of the characters in the line starting with the first non-white space character and up to, but not including, the first unescaped '=', ':', or white space character other than a line terminator. All of these key termination characters may be included in the key by escaping them with a preceding backslash character; for example,
|
키에 대한 값으로 :
, =
또는 공백문자가 아닌 첫번째 문자부터 시작하여 줄의 끝까지 값으로 포함된다.
그러나, 관례라고 하긴 그렇지만 넓게 사용되는 것은
.properties
server.port=9090app.info.name=honeymonapp.info.ver=v1.0
.yml
server.port: 9090app.info:name: honeymonver: v1.0
가 아닐까 생각한다. 그냥 문득…
[java] 윈도우즈 환경에서 자바 개발환경 구축하기 (0) | 2018.10.13 |
---|---|
[java] StringJoiner 사용기 (0) | 2018.03.25 |
함수형 인터페이스@FunctionalInterface 는 메서드가 한개밖에 없다며?? (0) | 2015.11.17 |
백명석님의 클린코더스 강의 (0) | 2015.09.25 |
굳이 필요한 게 아니면 enum에 toString() 을 구현하지 않는다. (1) | 2015.04.22 |