В applilication.properties пишем:
Default is none, using the java.util.Properties default encoding: ISO-8859-1.
If your table truly has no unique columns, then use all of the columns as the id. Typically when this occurs the data is read-only, so even if the table allows duplicate rows with the same values, the objects will be the same anyway, so it does not matter that JPA thinks they are the same object. The issue with allowing updates and deletes is that there is no way to uniquely identify the object's row, so all of the matching rows will be updated or deleted.
Строки с одинаковыми данными - однотипные события, каждое последующее гарантировано "перекрывает" предыдущее.как раз это тебе и нужно.
Видеофайлы в контейнере MP4 нельзя соединить с помощью оператора concat. Но можно предварительно преобразовать эти файлы в контейнер, например, MPEG-TS без перекодирования видео и звука:ffmpeg -i vid1.mp4 -acodec copy -vcodec copy -vbsf h264_mp4toannexb -f mpegts vid1.ts ffmpeg -i vid2.mp4 -acodec copy -vcodec copy -vbsf h264_mp4toannexb -f mpegts vid2.ts
А потом эти файлы уже можно соединить при помощи оператора concat в итоговый файл mp4:ffmpeg -i "concat:vid1.ts|vid2.ts" -vcodec copy -acodec copy out.mp4
ffmpeg -i video1.mp4 -c copy -bsf h264_mp4toannexb video1.ts
ffmpeg -i "concat:video1.ts|video2.ts|" -c copy -bsf:a aac_adtstoasc video_done.mp4
Process.waitFor()
? Потому что иначе вызывающая программа не ожидает завершения вызванной. Вот код для примера:import java.io.IOException;
public class Run {
public static void main(String[] args) {
try {
new ProcessBuilder("/usr/bin/kwrite").start();
} catch (IOException e) {
e.printStackTrace();
}
}
}
log4j.logger.org.hibernate=info
<logger name="org.hibernate">
<level value="info"/>
</logger>