Convert videos to ASCII art with a Streamlit web application.
This project provides a Streamlit web application to convert video files into ASCII art videos. Users can upload a video file, adjust settings like the number of columns, scale, color, and frame rate, and then convert the video. The resulting ASCII video can be previewed and downloaded.
- Upload video files (MP4, MOV, AVI)
- Convert videos to ASCII art
- Adjust settings for number of columns, scale, color, and frame rate
- Preview and download the converted ASCII video
- Progress bar for video processing
- FFmpeg integration for video creation
- Python 3.x
- Streamlit
- OpenCV
- NumPy
- Pillow
- FFmpeg (installed on the system)
- Clone the repository:
git clone https://github.com/YOUR_GITHUB_USERNAME/video-to-ascii-converter.git
cd video-to-ascii-converter
- Install the dependencies:
pip install -r requirements.txt
- Ensure FFmpeg is installed on your system. For installation instructions, visit FFmpeg Download. Running the Application Run the Streamlit application:
streamlit run app.py
- app.py: Main application file that contains the Streamlit web app code.
- frame_to_ascii: Function to convert a video frame to ASCII art.
- ascii_to_image: Function to convert ASCII art to an image.
- create_video_with_ffmpeg: Function to create a video from ASCII images using FFmpeg.
- process_video: Cached function to process the video and generate ASCII images.
You can try the demo here.
This project is licensed under the MIT License.