Richard, Pierre 1934-
google.charts.load('current', packages: ['corechart']);
google.charts.setOnLoadCallback(drawChart);
function drawChart()
var options =
height: 200,
legend: position: 'top', maxLines: 3 ,
bar: groupWidth: '75%' ,
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'
;
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
role: 'annotation' ],
['1950-1951', 0, 0, 0, ''],
['1951-1952', 0, 0, 0, ''],
['1952-1953', 0, 0, 0, ''],
['1953-1954', 0, 0, 0, ''],
['1954-1955', 0, 0, 0, ''],
['1955-1956', 0, 0, 0, ''],
['1956-1957', 5, 0, 0, ''],
['1957-1958', 0, 0, 0, ''],
['1958-1959', 0, 0, 0, ''],
['1959-1960', 0, 0, 0, ''],
['1960-1961', 0, 0, 0, ''],
['1961-1962', 0, 0, 0, ''],
['1962-1963', 0, 0, 0, ''],
['1963-1964', 0, 0, 0, ''],
['1964-1965', 0, 0, 0, ''],
['1965-1966', 0, 0, 0, ''],
['1966-1967', 0, 0, 0, ''],
['1967-1968', 0, 0, 0, ''],
['1968-1969', 0, 0, 0, ''],
['1969-1970', 0, 0, 0, ''],
['1970-1971', 10, 0, 0, ''],
['1971-1972', 0, 0, 0, ''],
['1972-1973', 25, 0, 0, ''],
['1973-1974', 15, 0, 0, ''],
['1974-1975', 20, 0, 0, ''],
['1975-1976', 0, 0, 0, ''],
['1976-1977', 15, 0, 0, ''],
['1977-1978', 5, 0, 0, ''],
['1978-1979', 15, 0, 0, ''],
['1979-1980', 0, 0, 0, ''],
['1980-1981', 5, 0, 0, ''],
['1981-1982', 20, 0, 0, ''],
['1982-1983', 5, 0, 0, ''],
['1983-1984', 15, 0, 0, ''],
['1984-1985', 15, 0, 0, ''],
['1985-1986', 25, 0, 0, ''],
['1986-1987', 20, 0, 0, ''],
['1987-1988', 20, 0, 0, ''],
['1988-1989', 20, 0, 0, ''],
['1989-1990', 25, 0, 0, ''],
['1990-1991', 30, 0, 0, ''],
['1991-1992', 20, 0, 0, ''],
['1992-1993', 20, 0, 0, ''],
['1993-1994', 15, 0, 0, ''],
['1994-1995', 15, 0, 0, ''],
['1995-1996', 25, 0, 0, ''],
['1996-1997', 20, 0, 0, ''],
['1997-1998', 25, 0, 0, ''],
['1998-1999', 20, 0, 0, ''],
['1999-2000', 20, 0, 0, ''],
['2000-2001', 25, 0, 0, ''],
['2001-2002', 20, 0, 0, ''],
['2002-2003', 20, 0, 5, ''],
['2003-2004', 30, 0, 0, ''],
['2004-2005', 30, 0, 0, ''],
['2005-2006', 30, 0, 0, ''],
['2006-2007', 25, 0, 0, ''],
['2007-2008', 30, 0, 0, ''],
['2008-2009', 30, 0, 0, ''],
['2009-2010', 30, 0, 0, ''],
['2010-2011', 30, 0, 0, ''],
['2011-2012', 25, 0, 0, ''],
['2012-2013', 30, 0, 0, ''],
['2013-2014', 25, 0, 0, ''],
['2014-2015', 25, 0, 0, ''],
['2015-2016', 30, 0, 0, ''],
['2016-2017', 20, 0, 0, ''],
['2017-2018', 30, 0, 0, ''],
['2018-2019', 30, 0, 0, ''],
['2019-2020', 20, 0, 0, ''],
['2020-2021', 0, 0, 0, ''],
]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
;
function bringBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;
function sendBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;
function getElementsByClassName(classname, node)
if(!node)
node = document.getElementsByTagName("body")[0];
var a=[];
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");
for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;
function turnEditEntriesOn(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="block";
document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';
function turnEditEntriesOff(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="none";
document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';
Richard, Pierre 1934-
Overview
Works: | 212 works in 598 publications in 6 languages and 3,433 library holdings |
---|---|
Genres: | Drama Comedy films Musical films Spy films Buddy films Nonfiction films Crime films Detective and mystery films Children's films Juvenile works |
Roles: | Actor, Author, Performer, Narrator, Creator, Director, Author of screenplay, Interviewee, Author of introduction, Contributor, Singer, Scenarist, Film editor, Restager , fmd, Other |
Classifications: | PN1997.2, 791.4372 |
Publication Timeline
.
Most widely held works about
Pierre Richard
Pierre Richard
"Je sais rien, mais je dirai tout" by Pierre Richard(
Book
)
Pʹer Rishar : i︠a︡ zastenchiv, no lechusʹ by Aleksandr Braginskiĭ(
Book
)
Pierre Richard : je suis un anarchiste(
Book
)
Franchise postale by Pierre Richard(
Book
)
Pʹer Rishar : ego zhiznʹ i filʹmy by Aleksandr Braginskiĭ(
Book
)
Comme un poisson sans eau : détournement de mémoires by Pierre Richard(
Book
)
[The Film industry in France](
Visual
)
Le petit blond dans un grand parc by Pierre Richard(
Recording
)
more
fewer
Most widely held works by
Pierre Richard
Pierre Richard
Lost in Paris by Dominique Abel(
Visual
)
14
editions published
between
2016
and
2019
in
3
languages
and held by
647 WorldCat member
libraries
worldwide
Filmed in Dominique Abel and Fiona Gordon's signature whimsical style, and stars the filmmakers as a small-town Canadian librarian
and a strangely seductive, oddly egotistical French vagabond. When Fiona's orderly life is disrupted by a letter of distress
from her elderly Aunt Martha who is living in Paris, Fiona hops on the first plane she can and arrives only to discover that
Martha has disappeared. In an avalanche of spectacular disasters, she encounters Dom, the affable, but annoying tramp who
just won't leave her alone
Faubourg 36 = Paris 36 by Christophe Barratier(
Visual
)
5
editions published
between
2008
and
2009
in
French
and held by
441 WorldCat member
libraries
worldwide
Three residents of the Faubourg decide to take over the Chansonia, a music-hall that closed down four months before, leaving
them unemployed. They want to produce a hit musical that will make them enough money to buy the hall
Le grand blond avec une chaussure noire = The tall blond man with one black shoe by Yves Robert(
Visual
)
51
editions published
between
1972
and
2015
in
3
languages
and held by
381 WorldCat member
libraries
worldwide
A professional musician's life is changed when he is mistaken for a secret agent
Les Compères by Francis Veber(
Visual
)
36
editions published
between
1983
and
2018
in
4
languages
and held by
311 WorldCat member
libraries
worldwide
When her teenage son runs away and her husband refuses to hunt for him, a frantic mother calls on two old lovers to help.
This odd couple makes an hilarious search on the Riviera, bickering and competing as they defeat gangsters and motorcycle
toughs to rescue the boy
La Chêvre = The goat by Francis Veber(
Visual
)
27
editions published
between
1981
and
2012
in
5
languages
and held by
308 WorldCat member
libraries
worldwide
A dedicated private eye searches for a businessman's daughter in Mexico, but the case is complicated by the amateur sleuthing
of the client's accountant
Et si on vivait tous ensemble? by Stéphane Robelin(
Visual
)
5
editions published
between
2012
and
2013
in
French and German
and held by
293 WorldCat member
libraries
worldwide
When elderly lothario Claude is put into an assisted living home, his friends bust him out and start a cranky commune together,
thinking they can care for each other better than anyone else
A chef in love(
Visual
)
1
edition published
in
1997
in
French
and held by
98 WorldCat member
libraries
worldwide
A sweeping romance about a free-spirited Frenchman whose romantic idyll with a princess in pre-Soviet Georgia is threatened
by the barbarism of the Russian revolution
Les malheurs d'Alfred : bande originale du film de Pierre Richard by Vladimir Cosma(
)
3
editions published
in
2010
in
Undetermined and French
and held by
61 WorldCat member
libraries
worldwide
Mr Stein goes online(
Visual
)
4
editions published
in
2018
in
French and English
and held by
59 WorldCat member
libraries
worldwide
A 75-year-old widower discovers online dating and uses a picture of his granddaughter's boyfriend to meet a young woman. When
she asks to meet him face to face, he asks someone to go in his place
Les naufragés de l'ile de la Tortue by Jacques Rozier(
Visual
)
9
editions published
between
1976
and
2008
in
French and Undetermined
and held by
36 WorldCat member
libraries
worldwide
Two travel agents in Paris create a scheme to sell customers the "Robinson Crusoe" experience
Les fugitifs by Francis Veber(
Visual
)
23
editions published
between
1986
and
2018
in
4
languages
and held by
35 WorldCat member
libraries
worldwide
A bank robber (Depardieu) is released from prison, only to find himself caught in another robbery situation as he is trying
to open an account at a bank
Le retour du grand blond = The tall blond man returns by Yves Robert(
Visual
)
14
editions published
between
1974
and
2014
in
French and Undetermined
and held by
29 WorldCat member
libraries
worldwide
Sequel to Le grand blond avec une chaussure noire, a comedy of mistaken identity in which a professional violinist's life
is changed when he is mistaken for a secret agent. In this sequel, the musician travels to Rio de Janeiro where he manages
to foil an attempt to murder him and he evens the score with a gang of killers--all by accident
All together by Daniel Bruhl(
Visual
)
6
editions published
between
2012
and
2019
in
French
and held by
29 WorldCat member
libraries
worldwide
Jean is a romantic revolutionary, yet enjoys the spoils of a bourgeois lifestyle with his wife, Annie, a retired psychiatrist.
Albert is a friendly yet senile man, which is in contrast with his energetic American wife. Widower Claude is an aging womanizer
who suffers a heart attack from walking up too many flights of stairs on a visit to one of his lady friends. Rather than see
him in a retirement home, his friends decide they should all live together in Annie and Jean's large bedroom
The daydreamer by Kate Davies(
Visual
)
8
editions published
between
1970
and
2005
in
French
and held by
22 WorldCat member
libraries
worldwide
A hilarious comedy in which Pierre Richard plays a very absent-minded young man who has radically different ideas about advertising--ideas
which provoke catastrophes for his firm
Le petit blond dans un grand parc : récit by Pierre Richard(
Book
)
9
editions published
between
1989
and
1990
in
French
and held by
19 WorldCat member
libraries
worldwide
Too shy to try by Pierre Richard(
Visual
)
12
editions published
between
1978
and
2014
in
French and English
and held by
19 WorldCat member
libraries
worldwide
What does a man, too shy to meet his own eyes in the mirror, do when he meets the girl of his dreams? He takes a crash course
on "emerging from this ghetto of the soul" from the Institute of Psychology. He develops the style and flair of Casanova,
only to find that the girl of his dreams is not what she seems, and she hates Casanova
Le bonheur de Pierre Pierre, a happy man(
Visual
)
4
editions published
between
2009
and
2010
in
French
and held by
17 WorldCat member
libraries
worldwide
Pierre Martin, docteur en physique quantique, quitte Paris avec sa fille Catherine, journaliste de mode, afin d'aller s'installer
dans l'auberge qu'il a héritée de sa tante, située à Sainte-Simone-du-Nord au Saguenay. L'arrivée de ces deux Français
contrarie le maire, Michel Dolbec, convaincu que l'auberge, jadis propriété de sa famille, devrait lui revenir de droit.
C'est ainsi qu'il persuade ses concitoyens de l'aider à chasser Pierre et Catherine, par tous les moyens possibles. Seul
Mario, homme à tout faire autrefois au service de la défunte, refuse de participer au complot, d'autant plus qu'il se sent
attiré par la revêche Catherine. Or, si celle-ci, devant tant de brimades, semble sur le point de craquer, son père persiste
à afficher un optimisme indécrottable, au grand dam du retors Dolbec
Voyage dans le monde de Sé nouvelles découvertes sur les Indiens Kogis by Éric Julien(
Book
)
1
edition published
in
2014
in
French
and held by
15 WorldCat member
libraries
worldwide
"Je sais rien, mais je dirai tout" by Pierre Richard(
Book
)
4
editions published
in
2015
in
French
and held by
14 WorldCat member
libraries
worldwide
Et la voilà, l'étoile qui me guide en toutes circonstances : le rêve. Pour moi, la vie est un gros gâteau, avec des tranches
de réalité et des tranches de rêve. Ce sont ces dernières que j'avale avec le plus d'appétit, et ça depuis l'enfance.Bien
sûr, au fil des temps, j'ai abandonné l'idée d'être Tarzan ou Geronimo, et après quelques années de latence, j'ai trouvé,
après avoir découvert Danny Kaye, le « truc » : devenir acteur. Ainsi, je pouvais continuer à poursuivre mes rêves d'enfance,
jouer à être un autre. Vivre mille aventures à travers les personnages que j'interprétais. Je suis devenu publiciste,
avocat, assistant social, psychanalyste, mais à ma façon. Seulement voilà, être comédien, c'est quoi ?Donner vie à des
personnages que vous n'êtes pas, avec le plus de réalisme possible, de vérité surtout. Et paradoxalement, c'est toujours
moi qu'on retrouve derrière ces personnages et non le contraire. C'est peut-être pourquoi j'ai toujours douté d'être un
comédien. C'était toujours moi, confronté à des situations comiques : distrait, inadapté, malchanceux, timide. [4e de
couv.]
Comme un poisson sans eau : détournement de mémoires by Pierre Richard(
Book
)
2
editions published
in
2003
in
French
and held by
5 WorldCat member
libraries
worldwide
Recueil de souvenirs et d'anecdotes inédites de plus de trente ans de carrière. P. Richard a choisi de parler de comédiens
et réalisateurs avec lesquels il a partagé des moments inoubliables, préférant mettre les autres en avant plutôt que
de s'intéresser à lui
more
fewer
Audience Level
0 | 1 | |||
Kids | General | Special |
Audience level:
0.35
(from
0.26
for
Lost in Pa
... to
0.95
for
Le petit b
...)
Related Identities
Veber, Francis Author of dialog Scenarist Producer Restager Director Author of screenplay Film editor Author
Depardieu, Gérard 1948- Other Performer Actor
Molia, Christie
Moteur s'il vous plaît (Firm)
CG Cinema (Firm)
Childéric, Claire Cinematographer
Deegan, Sandrine
Gillibert, Charles
Fideline Films (Firm) Producer
Proximus (Firm)
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikipedia Pierre Richard
Wikidata.
Associated Subjects
Actors Actresses American Junior Red Cross American Red Cross Andersen, H. C.--(Hans Christian), Aunts Canadians Cooks Deception Espionage, French Fairy tales France France--Paris France--Riviera Friendship Front populaire Imagination Internet and older people Labor movement Magic Male friendship Man-woman relationships Missing persons Mistaken identity Motion picture music Motion pictures Motion pictures, French Musicians Myocardial infarction--Patients Nineteen thirties Old age homes Older people Older people--Conduct of life Online dating Organizational behavior Outward Bound, Inc Private investigators Revolution (Soviet Union : 1917-1921) Rich people Roommates Runaway teenagers Russia (Federation) Social groups Social interaction Sociology Soviet Union Taylor, Frederick Winslow, Theatrical managers Tramps Violinists
Covers
Alternative Names
Defays, Pierre.
Defays Pierre 1934-....
Defays, Pierre-Maurice Richard Charles Léopold.
Defays, Pierre Richard Maurice Charles Léopold 1934-
Defays, Pierre Richard Maurice Charles Léopold de 1934-
Petrus Richard
Pierre Richard
Pierre Richard acteur, réalisateur et scénariste français
Pierre Richard Actor, regizor și scenarist francez
Pierre Richard aktor i reżyser francuski
Pierre Richard attore francese
Pierre Richard francia színész, filmrendező, forgatókönyvíró
Pierre Richard francouzský herec
Pierre Richard Frans filmacteur
Pierre Richard franséische Schauspiller, Filmregisseur an Dréibuchauteur
Pierre Richard Französischer Schauspieler, Filmregisseur und Drehbuchautor
Pierre Richard French actor, film director and screenwriter
Pierre Richard French actor, film director, screenwriter and comedian
Pyer Rişar
Rišaras Pjeras
Rishar, Pʹer, 1934-
Дефе П. Р. М. Ш. Л. 1934-
П’ер Рышар
П'ер Рышар
Пиер Ришар
Пьер Ришар
Пьер Ришар французский актёр, режиссёр и сценарист
П'єр Рішар
П'єр Рішар французький актор театру і кіно, режисер
Ришар Пьер
Ришар, Пьер, 1934-
Պիեռ Ռիշար
بيير ريتشارد
پیر ریشار
پییر ریچارد فیلمنامهنویس، بازیگر، و کارگردان فرانسوی
პიერ რიშარი
ピエール・リシャール
Languages
French
(201)
English
(26)
Russian
(7)
German
(2)
Italian
(2)
Multiple languages
(1)
(function(i,s,o,g,r,a,m)function(),i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
)(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');
setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);