
Video Editing Projects
Looking for freelance Video Editing jobs and project work? PeoplePerHour has you covered.
Design Brief – Light Box Sign Designs
Project Overview I manufacture illuminated light boxes with removable front plates (sign panels). I am looking for a designer to create a series of sign designs that will be placed on the front of these light boxes. The signs will be backlit by LEDs, so the designs should be visually bold, simple, and suitable for illumination. The finished designs will be used on removable panels so customers can swap the design depending on the occasion. Design Size Each design must fit within: 280mm (width) x 180mm (height) Landscape orientation. Please keep important design elements away from the outer edges to allow for trimming and mounting tolerance. Background For the purposes of the design work, assume: Background colour: White (#FFFFFF) In some cases the panel may be produced in other colours, but the default design assumption should be white. Possible alternative panel colours include: * Black (#000000) * Red (#C00D1E) * Blue (#00358E) * Green (#00AE42) * Grey (#A6A9AA) * Yellow (#FCE300) Colour Palette Designs should only use colours from the following palette: * Black (#000000) * White (#FFFFFF) * Grey (#A6A9AA) * Yellow (#FCE300) * Red (#C00D1E) * Green (#00AE42) * Blue (#00358E) * Teal (#0086D6) Where possible please use a limited number of colours per design. Simpler designs are preferred. Fonts Text must only use fonts that are supported in the Make My Sign tool. Please use one of the following fonts: - Arial - Arial Black - Verdana - Helvetica - Trebuchet MS - Tahoma - Times New Roman - Georgia - Courier New - Impact - Comic Sans MS Fonts may be combined if appropriate, but designs should remain clear and easy to read when illuminated. Design Style Designs should combine text and simple graphic elements or icons where appropriate. Because the panels are backlit, designs should: * Be bold and readable from a distance * Avoid very thin lines * Avoid excessive detail * Work well when illuminated * Use simple vector graphics where helpful Examples of graphic elements could include balloons, stars, confetti, beer mugs, controllers, hearts, etc. Designs Required Please create one design for each of the following phrases/themes: Seasonal / Events 1. Merry Christmas 2. Happy New Year 3. Happy Birthday 4. Happy Anniversary 5. Let's Party Home Bar / Drinks 6. Cheers 7. Bar Open Games Room / Gaming 8. Game Room Home / Decor 9. Love 10. Home Sweet Home Each design should feel visually appropriate for the theme. Examples of optional imagery include: - Christmas: trees, snowflakes, stars, ornaments - New Year: fireworks, champagne, clocks - Birthday: balloons, cake, confetti - Anniversary: hearts, rings - Party: confetti, streamers - Bar: beer mugs, cocktail glasses - Games room: Pool balls, darts These are suggestions only — creative interpretation is welcome. File Deliverables Each design must be supplied as: - Editable SVG files Please ensure: * Text is converted to outlines * Colours use the specified hex codes * Files are clean vector artwork suitable for production Revisions Please include two revision rounds if required. What I Need From You Please let me know: 1. Any questions you have 2. Estimated cost for the project 3. Estimated turnaround time 4. Examples of similar vector or signage work if available When replying to this job post, please include the word LIGHTBOX so I know you have read the brief. There may be additional design work available in the future if this project goes well.
23 days ago32 proposalsRemoteMobile App Developer Needed for Livestream Social Platform
Company Description Stealth Livestream Project is an early-stage startup building a next-generation mobile livestreaming platform designed to connect creators and audiences through interactive real-time experiences. Our mission is to develop a scalable social livestream ecosystem featuring virtual gifting, real-time chat, and creator monetization tools. The project is currently operating in stealth mode while we assemble a small team of experienced engineers to build the core platform. We are seeking a highly skilled developer who is passionate about building large-scale social applications and livestream technologies. Role Description This is a remote contract role for an experienced Mobile Application Developer responsible for helping build the core mobile application for a new livestream platform. The developer will design and develop scalable mobile features including: User authentication and profiles Real-time livestream video streaming Live chat and audience interaction Virtual gifting systems In-app purchase and payment integration Creator monetization tools The developer will collaborate with the founder to build the first production version of the platform, ensuring performance, scalability, and security. All development will be managed using version control to ensure transparency and proper ownership of the project. Responsibilities • Design and develop a scalable mobile livestream application • Implement real-time streaming and chat systems • Build secure authentication and user account management • Integrate payment and in-app purchase systems • Optimize performance for large numbers of concurrent users • Collaborate on system architecture and technical decisions • Maintain clean, well-documented source code Required Qualifications • Strong experience in mobile application development • Experience building apps for Android and/or iOS • Strong knowledge of Object-Oriented Programming (OOP) • Experience with real-time systems or livestream technologies • Experience with Git version control platforms such as GitHub • Strong problem-solving and debugging skills • Ability to work independently in a remote startup environment Technical Partnership Opportunity This project is an early-stage startup developing a next-generation livestream social platform. The developer selected for this project will have the opportunity to work as a long-term technical partner. The goal is to build and launch the platform together and grow it into a scalable global product. The initial development phase will begin as a project collaboration, with the possibility of long-term partnership, revenue participation, and continued development after launch. Full project details and partnership structure will be discussed with shortlisted candidates during the interview stage. All development will be managed through repositories controlled by the project owner to ensure transparency and proper project ownership. Preferred Experience Experience building or working with social platforms similar to: • TikTok • Bigo Live • Poppo Live Knowledge of: Livestream infrastructure Realtime messaging systems Payment systems Scalable backend architecture is highly valued. Important Project Conditions • All source code and intellectual property developed for this project will belong 100% to the founder and project owner. • Development will be conducted through repositories controlled by the project owner. • The project is currently in stealth mode and full details will be shared during the interview process. Why Join This Project • Opportunity to build a large-scale livestream platform from the ground up • Work on innovative social technology • Potential for long-term collaboration and growth with the project. Application Requirement To confirm that you have carefully read the project description, please start your proposal with the word “LivestreamPro”. Applications that do not include this word at the beginning of the proposal may not be considered.
17 days ago37 proposalsRemoteopportunity
Extract blood test data from PDF documents that have been OCR'd
The objective is to build a structured blood test database that allows pathology results to be viewed, edited, filtered, and exported to Excel via a web-based HTML interface. The system stores results in a clean, standardised format so trends can be analysed accurately over time. Using AI-assisted OCR, I have built a local Python extraction pipeline that converts PDF pathology reports into machine-readable text and inserts structured data into a SQLite database. The majority of blood tests extract correctly, including canonical test name, result value, unit, and reference range. However, I have reached a specific technical issue with three markers: • CRP (C-reactive protein) • ESR • GLU (Glucose) The OCR output clearly contains the correct lines, and debug logs confirm they are processed. Yet no rows are inserted for these markers. The failure appears to occur between canonical matching, numeric extraction, or validation logic. Current System Architecture The system runs locally and consists of: • extraction_core_2.py (main engine) • Supporting modules for OCR preprocessing, lab dictionary building, regex matching, and validation • SQLite backend • Schema-driven canonical lab dictionary • Controlled fuzzy fallback logic • HTML viewer for results display and Excel export Pipeline flow: Convert PDF to image (pdf2image) Preprocess Run Tesseract OCR Clean and normalise text Match against canonical lab dictionary Extract: canonical test name numeric result unit reference range Validate Insert into SQLite The engine is deterministic and rule-based. The Specific Problem Example OCR line: CRP H 5.2 mg/L 0-5 OCR text is correct. NUMBER_PATTERN matches. The canonical dictionary contains the test. Yet: Inserted 0 rows from 0126251OrderReport_23B00006604_CRP.pdf Likely failure points include: • Canonical containment match failing due to normalisation • Flag tokens (“H”, “L”) interfering with numeric capture • Numeric extraction anchored incorrectly • Validation rejecting due to strict range formatting • Unit pattern mismatch (e.g. mmol/L) • Dictionary indexing issue • Match overridden by another lab name • Guard conditions too strict If validation fails, the row is rejected silently. All other panels extract correctly. The issue appears isolated. What Is Required This is not a rebuild. We do not want: • Re-architecture • Experimental AI guessing logic • Large-scale changes • Expanded fuzzy matching We need: 1. Precise Diagnosis Identify exactly where CRP, ESR, and GLU are failing insertion and which rule is causing rejection. 2. Minimal Safe Fix Implement a targeted correction that: • Adjusts canonical matching if required • Anchors numeric extraction correctly • Allows flag tokens without blocking capture • Relaxes only necessary validation checks • Preserves deterministic behaviour 3. Zero Regression • No impact to currently working panels • No performance degradation • No uncontrolled fuzzy expansion 4. Modular Implementation If appropriate: • Implement as small isolated module or • Cleanly adjust matching block The existing architecture should remain intact. Constraints The system is designed to be: • Deterministic • Schema-driven • Reproducible • Forensic-grade We cannot introduce probabilistic or unpredictable behaviour. Longer-Term Goal After stabilising extraction: • Migrate to web deployment • Enable structured uploads • Add trend analysis • Later incorporate AI-assisted interpretation Immediate priority: Stabilise deterministic extraction for CRP, ESR, and GLU without breaking the existing engine. Materials Provided Uploaded: • Full extraction_core_2.py (text format) • Screenshot of HTML viewer • Sample PDF files • Export showing required output Additional materials available on request: • Sample OCR blocks • Canonical dictionary entries • Regex patterns • Validation logic • Database schema • Debug logs This is a focused debugging and refinement request. I have spent many hours attempting to isolate the issue and now require an experienced developer to identify the blocking condition and implement a practical fix. I have been advised this should take 1–2 hours for a senior developer. Looking for a swift turnaround.
a month ago22 proposalsRemoteopportunity
Tidy the server from X-ransom attack
Hello, Our Wordpress website was attacked by x-ransom. We have a backup of the WP and the database dump. We have detected some corrupted files there but it seems that there are still some left that were not detected. It has to be tidy after the attack. It’s an internet shop with uploads files of around 100GB. It’s stored on a private hosting in LV. What is done do far: 1. Update WordPress Version 2. Use z’d updateSecure WP-Admin Login Credentials 3. Set Up Safelist and Blocklist for the Admin Page 4. Use Trusted WordPress Themes 5. Install SSL Certificate 6. Remove Unused WordPress Plugins and Themes 1. Enable Two-Factor Authentication for WP-Admin 2. Back Up WordPress 3. Limit Login Attempts 4. Change the WordPress Login Page URL 5. Log Idle Users Out Automatically 6. Monitor User Activity 7. Check for Malware - found several none-Wordpress specious files and plugins. Deleted them. 1. Disable PHP Error Reporting 3. Turn File Editing Off 4. Restrict Access Using the .htaccess File 5. Change the Default WordPress Database Prefix - not done 6. Disable XML-RPC 7. Hide the WordPress Version 8. Block Hotlinking - not done 9. Manage File Permissions not done After making the list, we received another x-ransome attack. I suspect he has a server level access not only wp level. If you apply, you need to be a server security and a Wordpress specialist. Please, quote for the job.
2 years ago28 proposalsRemote