Converting a video from MOV format to MP4 can be done using various tools and software. One of the most popular and efficient ways to do this is by using FFmpeg, a powerful multimedia framework that can handle a wide range of audio and video format conversions. Here's a basic guide on how to convert a MOV file to MP4 using FFmpeg: Step 1: Install FFmpeg If you don't have FFmpeg installed on your..
To add a watermark to an image using Python, you can use libraries like Pillow (PIL). However, integrating this functionality with Streamlit for web deployment requires a different approach. Here's a basic outline of how you can achieve this: Pillow for Watermarking: Use the Pillow library to add a watermark to the image. Streamlit for Web Interface: Use Streamlit to create a web interface where..
Linking an external HTML file in a Streamlit application can be done in a few ways, depending on how you want to integrate the HTML content into your app. Streamlit provides several methods to display HTML content. Here are some common methods: 1. Using st.markdown with HTML: If you have a small HTML file or HTML content that you want to render directly in your Streamlit app, you can read the HT..
로컬 프로세스 검색을 했는데 "avahi-daemon"이 나와서 이게 뭔가 궁금했습니다. [root@host_name ~]# ps -ef | grep my_service avahi 866 1 0 Jan24 ? 00:00:00 avahi-daemon: running [ my_service .local] root 27802 18831 0 11:18 pts/59 00:00:00 grep --color=auto my_service avahi-daemon은 네트워크에서 서비스를 발견하고 발표하는 데 사용되는 Linux 시스템의 데몬입니다. 이것은 Zeroconf 네트워킹 프로토콜을 구현하는 오픈 소스 프로젝트인 Avahi의 일부입니다. Zeroconf는 컴퓨터 네트워크에서 자동으로 IP 주소를 할당하고 서비스를 ..
(너무 긴 시간 동안 티스토리 업데이트를 안했더니, 끼갈나게 바뀐 티스토리 Editor가 어색하다. 매우 엄청난 기능에 고맙고 황송함도 플러스 ) 반백살이 되어갈 동안 너무 IIS/Apche에만 의존해 온 것 같아 "끼깔나게 성능 좋(다고 알려져 있)다는 NginX를 배워보기로 했다. Ubuntu 리눅스 서버에 설치하는 것을 기준으로 대부분의 설명(구글링)이 나와있지만, 클라이언트의 시스템 환경이 Windows인 탓에, Windows 환경을 기준으로 구축/운영하는 방법을 기록해 두기로 한다. Nginx는 사용자의 요청에 의해 정적/동적인 웹 페이지를 반환하는 웹서버다. Nginx는 일반적인 HTTP의 웹서버의 역할 외에도 proxy, reverse proxy 서버의 역할 또한 가능해 매력적인 것 같다. ..