The White Truck

The White Truck (French: Le camion blanc) is a 1943 French comedy drama film directed by Léo Joannon and starring Jules Berry, Blanchette Brunoy and François Périer.[1]

The White Truck
Directed byLéo Joannon
Produced byLéo Joannon
Written byAndré-Paul Antoine
André Cayatte
Léo Joannon
StarringJules Berry
Blanchette Brunoy
François Périer
Music byLouis Pasquier
Roger-Roger
CinematographyNikolai Toporkoff
Edited byJacques Grassi
Production
company
MAIC
Distributed byRegina Distribution
Release date
24 March 1943
Running time
112 minutes
CountryFrance
LanguageFrench

The film's sets were designed by the art director Jean Douarinou.

Synopsis

A young garage mechanic is hired for an unusual assignment, to drive a white truck around France carrying the corpse of a famed gypysy leader.

Cast

gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
gollark: I mean, you could use PHP too. I don't like it. But you could.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.

References

  1. Parish p..56

Bibliography

  • James Robert Parish. Film Directors Guide: Western Europe. Scarecrow Press, 1976.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.