- published: 27 Feb 2023
- views: 17309
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The Berlin International Film Festival (German: Internationale Filmfestspiele Berlin), also called the Berlinale, is one of the world's leading film festivals and most reputable media events. It is held annually in Berlin, Germany.
Founded in West Berlin in 1951, the festival has been celebrated annually in February since 1978. With around 300,000 tickets sold and 500,000 admissions it is considered the largest publicly attended film festival worldwide based on actual attendance rates. Up to 400 films are shown in several sections, representing a comprehensive array of the cinematic world. Around twenty films compete for the awards called the Golden and Silver Bears. Since 2001 the director of the festival has been Dieter Kosslick.
The European Film Market (EFM), a film trade fair held simultaneously to the Berlinale, is a major industry meeting for the international film circuit. The trade fair serves distributors, film buyers, producers, financiers and co-production agents. The Berlinale Talent Campus, a week-long series of lectures and workshops, gathers young filmmakers from around the globe. It partners with the festival itself and is considered to be a forum for upcoming artists.
The 46th annual Berlin International Film Festival was held from 15 to 26 February 1996. The Golden Bear was awarded to British-American film Sense and Sensibility directed by Ang Lee. The retrospective dedicated to American film director, producer and screenwriter William Wyler was shown at the festival.
The following people were announced as being on the jury for the festival:
The following films were in competition for the Golden Bear and Silver Bear awards:
The following prizes were awarded by the Jury:
The 66th annual Berlin International Film Festival is currently being held from 11 February to 21 February 2016. Meryl Streep has been announced as the President of the Jury. The Honorary Golden Bear for lifetime achievement will be presented to German cinematographer Michael Ballhaus.Hail, Caesar!, directed by Joel and Ethan Coen, has been selected to open the festival.
The following people have been announced as being on the jury for the Berlinale Competition section:<ref name=full-jury">"International Jury". Berlinale. Retrieved 2 Feb 2016. </ref>
The following people have been announced as being on the jury for the Best First Feature Award:
The following people have been announced as being on the jury for the Berlinale Shorts section:
"Überlin" is a song by American alternative rock band R.E.M.. It was released as the second single from their fifteenth and final studio album Collapse into Now on January 25, 2011.
The song's music video was directed by Sam Taylor-Wood and stars her fiancé, actor Aaron Johnson.
Berlin is the name of a sculpture on the Tauentzienstraße in western Berlin, the capital of Germany.
First conceived in 1985 and unveiled by the husband-and-wife sculpting team of Brigitte Matschinsky-Denninghoff and Martin Matschinsky in 1987, the sculpture's principal motif, a "broken chain", was meant to symbolize the severed connections between West and East Berlin due to the construction of the Berlin Wall.
Even though the Wall has since been dismantled, the sculpture was bought by the city from Mrs. Matschinsky-Denninghoff to commemorate the unfortunate chapter in German history.
Berlin was one of eight sculptures designed during "Skulpturenboulevard Kurfürstendamm" (Boulevard of Sculptures: Kurfürstendamm), an event commissioned by the city of West Berlin to celebrate Berlin's 750th anniversary in 1987. Of the eight sculptures unveiled, three were allowed to remain past the anniversary year (Berlin, Pyramide, and Cadillacs in Form der nackten Maja); the city and Deutsche Bank acquired Berlin after its original lease had expired.
A Berlin (or Berline) carriage was a type of covered four-wheeled travelling carriage with two interior seats. Initially noted for using two chassis rails and having the body suspended from the rails by leather straps, the term continued in use for enclosed formal carriages with two seats after the suspension system changed from leather straps to steel springs.
The carriage was designed around 1660 or 1670 by a Piedmontese architect commissioned by the General quartermaster to Frederick William, Elector of Brandenburg. The Elector used the carriage to travel from Berlin, Brandenburg's capital, to the French capital of Paris, where his carriage created a sensation. While heavy-duty vehicles had used double-railed frames before, passenger vehicles had normally used a single rail. The elegant but durable style was widely copied and named "berline" after the city from which the carriage had come. It was more convenient than other carriages of the time, being lighter and less likely to overturn. The berline began to supplant the less practical and less comfortable state coaches and gala coaches in the 17th century.
"Art is like oxygen", said our 2023 International Jury member Golshifteh Farahani and looking back at the last eleven days we can only emphasise that. We are wrapping up an incredible 73rd Berlin International Film Festival that featured hundreds of film screenings, thought-provoking talks, demonstrations of solidarity with Ukraine und Iran and many other inspiring events and emotional moments. A big thank you to our filmmakers, guests, juries and - of course - a big thank you to you: our incredible audience! We’re looking back at an amazing 73rd edition of the Berlinale that gives us the energy and motivation for the festival editions to come – just like our Honorary Golden Bear winner Steven Spielberg: we’re not finished. Watch a few of the many highlights we experienced this year in ...
At Berlinale Talents, the aim is for the Talents to connect both with themselves and with all the others, and nowhere is this better at work than the Talents Tanks, where we create space for empowerment, good encounters, deep talks and Talents' own development. BERLINALE TALENTS ►Instagram: www.instagram.com/berlinaletalents ►Facebook: www.facebook.com/BerlinaleTalents ►Twitter: www.twitter.com/berlin_talents ► LinkedIn: www.linkedin.com/berlinaletalents SUBSCRIBE TO OUR BERLINALE CHANNEL HERE ► https://bit.ly/BerlinaleYouTube CHECK OUT ► Instagram: https://www.instagram.com/berlinale/ ► Facebook: https://www.facebook.com/berlinale ► Twitter: https://twitter.com/berlinale ► LinkedIn: https://www.linkedin.com/company/berlinale ► Website: https://www.berlinale.de ► Newsletter: http...
Watch the highlights of the 73rd Berlinale Award Ceremony on February 25, 2023 at the Berlinale Palast. SUBSCRIBE TO OUR BERLINALE CHANNEL HERE ► https://bit.ly/BerlinaleYouTube CHECK OUT ► Instagram: https://www.instagram.com/berlinale/ ► Facebook: https://www.facebook.com/berlinale ► Twitter: https://twitter.com/berlinale ► LinkedIn: https://www.linkedin.com/company/berlinale ► Website: https://www.berlinale.de ► Newsletter: https://bit.ly/BerlinaleNewsletter #Berlinale #Berlinale2023 Thumbnail: © Richard Hübner / Berlinale 2023
Gay homosexuals Nick and Joseph discuss Nick's favorite (and not so favorite) films from the 73rd Berlinale. Want to send them stuff? Fish Jelly PO Box 461752 Los Angeles, CA 90046 Find merch here: https://fishjellyfilmreviews.myspreadshop.com/all Visit their website at www.fishjellyfilms.com Find their podcast at the following: Anchor: https://anchor.fm/fish-jelly Spotify: https://open.spotify.com/show/388hcJA50qkMsrTfu04peH Apple Podcasts: https://podcasts.apple.com/us/podcast/fish-jelly/id1564138767 Find them on Instagram: Nick (@ragingbells) Joseph (@joroyolo) Fish Jelly (@fishjellyfilms) Find them on Letterboxd: https://letterboxd.com/ragingbells/ https://letterboxd.com/joroyolo/ Nick is also the Lead Film Critic at Ioncinema (h...
The trailer for "Elaha" by Milena Aboyan, starring Bayan Layla, Armin Wahedi, Derya Dilber, Derya Durmaz, Cansu Leyan. Screening in the 2023 Perspektive Deutsches Kino programme. About the film: Elaha, 22, believes she must restore her supposed innocence before she weds. A surgeon could reconstruct her hymen but she cannot afford such an operation. She asks herself: why does she have to be a virgin anyway, and for whom? SUBSCRIBE TO OUR BERLINALE CHANNEL HERE ► https://bit.ly/BerlinaleYouTube CHECK OUT ► Instagram: https://www.instagram.com/berlinale/ ► Facebook: https://www.facebook.com/berlinale ► Twitter: https://twitter.com/berlinale ► LinkedIn: https://www.linkedin.com/company/berlinale ► Website: https://www.berlinale.de ► Newsletter: https://bit.ly/BerlinaleNewsletter #Be...
The trailer for "Music" by Angela Schanelec. Screening in the 2023 Competition programme. About the film: A cinematic riddle, mirror, dream or puzzle in which the Oedipus myth is transposed to a period from the 1980s to the present, from the beaches of Greece to the lakes of Berlin. An austere, baroque work with occasional drops of blood. Perfectly elliptical. SUBSCRIBE TO OUR BERLINALE CHANNEL HERE ► https://bit.ly/BerlinaleYouTube CHECK OUT ► Instagram: https://www.instagram.com/berlinale/ ► Facebook: https://www.facebook.com/berlinale ► Twitter: https://twitter.com/berlinale ► LinkedIn: https://www.linkedin.com/company/berlinale ► Website: https://www.berlinale.de ► Newsletter: https://bit.ly/BerlinaleNewsletter #Berlinale #Berlinale2023 #BerlinaleCompetition #BerlinaleTrailer...
Embodying CHANEL’s deep connection to the world of cinema and its great actresses, Kristen Stewart has a close and unique relationship with the House. A former jury member of the Cannes Film Festival and a CHANEL ambassador since 2013, she served as the International Jury President during the 73th edition of the Berlin International Film Festival. On this occasion, she was wearing CHANEL looks on the red carpet. During the event, Kristen Stewart opened up about her experience as International Jury President and was joined by actress Golshifteh Farahani, a member of the International Jury. #CHANELandCinema #CHANEL ➺ For more videos, subscribe to our channel: https://www.youtube.com/channel/UCclHSnngVTZK7LEOQAzcg1w?sub_confirmation=1 Go to our website: https://www.chanel.com/ ► Find ...
The empowerment of women is an important part of Berlinale Talents work every day. Technical fields in the film industry are often male-dominated, and we want to change that. See those efforts in action at Berlinale Talent’s Camera Studio, supported by ARRI, which welcomed renowned documentary filmmaker and cinematographer Kirsten Johnson and César Award-winning Caroline Champetier as mentors this year. Also hear from Berlinale Talents alum Shuchi Talati who returned to Berlin to provide an update on her project “UnderCurrent”. Supported by Berlinale Talents through the Mastercard Enablement Programme, the initiative trains women and non-binary people in grip and electric departments on film sets in India. BERLINALE TALENTS ►Instagram: www.instagram.com/berlinaletalents ►Facebook: www.fac...
November 15,2023 The Celebration Tour 2023/ 2024
The Berlinale 2020 has ended. And we look back on a packed festival with hundreds of thousands of cinema visits, with rousing standing ovations and heated debates. All of which belongs to this festival. We are indebted to the incredible filmmakers and, above all, to our audiences from around the world. We remain deeply humbled by all of your enduring love and support for cinema. This is what brings us together. SUBSCRIBE TO OUR BERLINALE CHANNEL HERE: ► https://bit.ly/BerlinaleYouTube CHECK OUT ►Instagram: https://www.instagram.com/berlinale/ ►Facebook: https://www.facebook.com/berlinale ►Twitter: https://twitter.com/berlinale ►Website: https://www.berlinale.de #Berlinale #Berlinale70 #GoldenBear Thumbnail: © Erik Weiss / Berlinale
The 66th Berlin International Film Festival kicks off this month, and we're giving you a chance to take part in the filmmaking festivities with two official selections from the festival: Arcadia and The Shipping News. Be sure not to miss our Berlinale special when it airs on 20 February, from 19:25 BKK/JKT | 20:25 SIN/TW onwards!
A medley of impressions of the 66th Berlin International Film Festival
Nagawaran ng "Silver Alfred Bauer Prize" sa 66th Berlin International Film Festival ang pelikula na "Hele sa hiwagang hapis" ni Lav Diza. Ito ang walong oras na pelikula na pinagbidahan nina John Lloyd Cruz, Piolo Pascual, Angel Aquino at Alessandra De Rossi. Alamin sa ulat hatid ni Jeff Caparas. (Video uploaded by Ric Jayson Toring; Manuscript edited by Joey Hernandez; For any concerns, you may e-mail us at [email protected])
EVENT CAPSULE CLEAN - 'Alone in Berlin' Red Carpet - 66th Berlin International Film Festival at Berlinale Palast on February 15, 2016 in Berlin, Germany. See more celebrity photos and video at https://foto.gettyimages.com/celebrity/
Director Gianfranco Rosi has won the Golden Bear award for the Best Film for his documentary "Fuocoammare" at the 66th Berlinale International Film Festival in Berlin.... Watch the Euronews live news channel here: https://www.youtube.com/c/euronews/live Find us on: Website: https://www.euronews.com/nocomment Twitter: https://twitter.com/nocomment Facebook: https://facebook.com/euronews.nocomment Instagram: https://www.instagram.com/nocomment_euronews Tiktok: https://www.tiktok.com/@nocomment_euronews Flipboard: https://flipboard.com/@euronews/no-comment-ro8elffsz Newsletter: https://www.euronews.com/follow-us#newsfeed No Comment is brought to you by euronews, the most watched news channel in Europe. #Nocomment
EVENT CAPSULE CLEAN - 'Goat' Red Carpet - 66th Berlin International Film Festival at Grand Hyatt Hotel on February 17, 2016 in Berlin, Germany. Featuring: Nick Jonas See more celebrity photos and video at https://foto.gettyimages.com/celebrity/
The Egyptian film "Akher Ayyam El-Medina" (In the Last Days of the City) by Egyptian director Tamer al-Saeed was screened on Tuesday at the 66th Berlin International Film Festival. The screening was its world premiere. The festival is set to run from the 11th to the 21st of February, 2016. The shooting of the film began in 2008 in Cairo, Alexandria, Beirut, Baghdad and Berlin, blending many talents from the Arab world. El-Said's feature is about a Cairo-based film-maker struggling to make a film about the city, which is in a state of trouble. (In the Last Days of the City) stars Leila Sami, Hanan Youssef, Mary Saad, Ali Sobhy, Haider, Bassem Hajjar and Bassem Fayyad. The film is written by Rasha Salti and directed by Tamer al-Saeed.
EVENT CAPSULE CLEAN - 'Hail, Caesar!' Opening Ceremony Red Carpet - 66th Berlin International Film Festival at Berlinale Palast on February 11, 2016 in Berlin, Germany. Featuring: Tilda Swinton George Clooney Meryl Streep Amal Clooney Channing Tatum See more celebrity photos and video at https://foto.gettyimages.com/celebrity/
(14 Oct 2015) MERYL STREEP TO HEAD BERLIN JURY Meryl Streep will serve as Jury President of next year's Berlin International Film Festival. The 66th annual festival, which takes place in February, will see the Academy Award-winning actress act as a jury member for the first time in her long and illustrious career. In a statement released by the Berlinale, Streep expressed her delight at the appointment. "It is a thrill to return to the festival under any circumstances, but it is with great relish and anticipation I look forward to jury duty. The responsibility is somewhat daunting, as I have never been President of anything before, and I hope I can come up to the precedent set by the distinguished juries of preceding years. Grateful for the honor." Streep is no stranger to the Europea...
After Chinese film "Crosscurrent" received the widest exposure at the 66th Berlin International Film Festival a few days ago, another wave of Chinese films has taken over Berlin's cinemas. At the Berlin Chinese Film Festival (BCFF) held between Feb. 24 to 27, about 40 Chinese-language films were screened to European audience. According to festival organizers, this film festival includes competition program, documentary program and youth program. A total of 16 Chinese-language films were selected for the competition program. Among them, "River Road" by Chinese director Li Ruijun won him the Best Screenplay award while "North By Northeast" won the Best Feature Film Award. Chinese film star Fan Bingbing won the Best Actress award for her role in the film "Ever Since We Love". The be...
The Berlin International Film Festival (German: Internationale Filmfestspiele Berlin), also called the Berlinale, is one of the world's leading film festivals and most reputable media events. It is held annually in Berlin, Germany.
Founded in West Berlin in 1951, the festival has been celebrated annually in February since 1978. With around 300,000 tickets sold and 500,000 admissions it is considered the largest publicly attended film festival worldwide based on actual attendance rates. Up to 400 films are shown in several sections, representing a comprehensive array of the cinematic world. Around twenty films compete for the awards called the Golden and Silver Bears. Since 2001 the director of the festival has been Dieter Kosslick.
The European Film Market (EFM), a film trade fair held simultaneously to the Berlinale, is a major industry meeting for the international film circuit. The trade fair serves distributors, film buyers, producers, financiers and co-production agents. The Berlinale Talent Campus, a week-long series of lectures and workshops, gathers young filmmakers from around the globe. It partners with the festival itself and is considered to be a forum for upcoming artists.