[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]

/film/ - FILM

Film
Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Embed
(replaces files and can be used instead)
Oekaki
Show oekaki applet
(replaces files and can be used instead)
Options
dicesidesmodifier

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov, pdf
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


Welcome to /film/ discussion - Captcha - Info - Threads - Boardtracker - Friends: [ animu / tv ] - Check us out on Letterboxd.

Be sure to visit (and bookmark) our NEW board at Anon.Cafe

File: 1411252222888.jpg (806.45 KB,1920x1220,96:61,slajd11.jpg)

 No.143 [View All]

I've been thinking about the purpose of this board. What is your opinion:

Do you think this should be a place to talk only about "high cinema", with words like "movie" or "director" forbidden (there are only "films" and "auteurs") with no "capeshits" and blockbusters and allowed,

Or, a place for discussion about every single film with no prejudices, as long it is a film and there is a discussion, not spamming pictures of Aiden Gillan. (there's >>>/tv/ for that)

Discuss, state your mind.
285 postsand51 image repliesomitted. Click reply to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.7310

File: 1463548562038.jpg (15.74 KB,512x384,4:3,Anne-Fortier_Cap.jpg)

Hello, /film/.

>>>/atv/ board owner here.

Our board was created to fill the void of a place to discuss TV shows in a more slow appreciative manner, as threads about less popular shows simply die out on the current /tv/ climate, in the vein of /film/'s board culture. As well as popcorny movies, animations and all that secondary media that doesn't suit this board.

Feel welcome to post there, and we will be linking to /film/ (and /tv/) in our announcement links, unless the board owner here tell us not to.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12127

File: bbe346d7af4733b⋯.png (116.24 KB,722x723,722:723,best board subtitle.png)

At long last someone has made a boardwatcher script. This script gives you a notification when any of your favorite boards has a new post. You no longer have to waste time checking a bunch of boards manually. It has great potential for a slow board like this one.

https://gitgud.io/trackanon/boardtracker/

Be sure that /film/ is one your favorites and paste this script into your User JS:

// ==UserScript==
// @name 8chan favorite board tracker
// @description Checks any board you have favorited for new posts.
// @include /^https?://.*8ch\.net/.*$/
// @namespace https://8ch.net/
// @require https://8ch.net/js/jquery.min.js
// @version 0.1
// ==/UserScript==

var BoardTracker = {
// OPTIONS
deadAlert: true, // set to true to color board names if they're "dead"
deadThreshold: 10, // amount of days since last post to consider the board dead
deadColor: "grey", // what to color a dead board

load: function() {
if (localStorage.trackerData == undefined) {
BoardTracker.data = {};
} else {
BoardTracker.data = JSON.parse(localStorage.trackerData);
}
},

save: function() {
localStorage.setItem("trackerData", JSON.stringify(BoardTracker.data));
},

currentData: {},

onBoard: function(board) {
return window.location.pathname.search("/"+board+"/") == 0;
},

getPostCount: function(board) {
var url = "https://8ch.net/" + board + "/0.json";

var xhr = $.getJSON( url, function(data) {
var highPost = 0;
var time = 0;
for (var t in data.threads) {
var curPost = data.threads[t].posts.slice(-1)[0];
if (curPost.no > highPost) {
highPost = curPost.no;
time = curPost.time;
}
}
if (BoardTracker.data[board] == undefined || BoardTracker.onBoard(board)) {
BoardTracker.data[board] = highPost;
}
BoardTracker.currentData[board] = {
posts: highPost - BoardTracker.data[board],
time: time
};
});

return xhr;
},

updateFavorites: function() {
BoardTracker.load();
var favorites = JSON.parse(localStorage.favorites);
var requests = [];
for (var i in favorites) {
var board = favorites[i];
requests.push(BoardTracker.getPostCount(board));
}

$.when.apply($, requests).then(function() {
BoardTracker.save();

var favNodes = $(".favorite-boards");

for (var n = 0; n < favNodes.length; n++) {
var node = favNodes[n];
for (var c = 0; c < node.children.length; c++) {
var child = node.children[c];
var board = child.innerHTML
if (BoardTracker.currentData[board].posts > 0)
child.innerHTML = "<b><u>" + board + " ("+ BoardTracker.currentData[board].posts + ")</u></b>";

var date = new Date(BoardTracker.currentData[board].time * 1000);
child.title = "Last post: " + date.toLocaleString();

if (BoardTracker.deadAlert &&
date.getTime() + BoardTracker.deadThreshold * 86400000 < (new Date).getTime()) {
child.style.color = BoardTracker.deadColor;
child.title += " (dead board?)";
}
}
}
});
},

initialize: function() {
BoardTracker.updateFavorites();
$("#favorite-star").click(BoardTracker.updateFavorites);
}
};

BoardTracker.initialize();

/* END BOARD TRACKER */

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12128

File: 62e5a113fb8c2c7⋯.png (477.66 KB,720x546,120:91,dI3pa2W.png)

>>12127

cool... it actually works!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12134

>>7310

the /tv/ alternatives never last

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12137

>>12134

Hello comrade how was your ban.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12139

>>12137

Ban? not me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12669

all those wh*toids

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12716

File: 4900b9ce6212121⋯.jpg (36.61 KB,640x427,640:427,1466039562691.jpg)

>so many threads on 404

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12718

>>12716

That's annoying. I bet people click the threads and don't know how to fix it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12720

>>12716

That's what happens when we stay on a site known for having multiple problems.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.12721

>>12718

>>12716

I've revived a few 404s in the past month, last was Underrated Directors I think

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14037

Can anyone help me find a thread that was discussing how flat and boring digital film is.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14038

File: e9f242c01cfe048⋯.png (584.15 KB,1280x544,40:17,2ef71899fa81.png)

>>14037

I found this >>10320

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14039

>>14038

This was it, merci.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14494

File: a09f02497c8eca4⋯.gif (461.34 KB,500x351,500:351,a09f02497c8eca47f552606eff….gif)

I've been getting a fever about learning photography, it crossed my mind that back in Halfchan we had a board about that same topic. Doing an odd search on our front page here landed a result that at some point we also had a photography place with the same legacy name, /p/.

Standing at 1713 posts we can say the place was never a hotspot even in their early 2nd exodus days of October 2014, but they still go at it with the latest posts being as recent as 10 days ago ...so yes, still some activity around.

The point i wanted to reach was how about a photography general thread with those folks being formally invited? I know it's silly to ask for consensus but it's even sillier to start a thread with a complete amateur as myself. Sure even the old child modelling board with thousands of deleted posts got more activity but this would probably add some talent into the thread and reinvigorate that board's seemingly inert userbase, all 3 of them, plus i think maybe some anons might be interested here.

Just saying

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14495

File: de474a789fd1768⋯.jpg (217.78 KB,1200x787,1200:787,william_klein_17.jpg)

>>14494

I've thought about making a photography thread before. I can't offer practical expertise though. So I intended to post about directors who were photographers, films about photography, and also a general imagedump of cool photos.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14634

Would you ever consider adding /animu/ as a friend?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14653

Is there a /film/ or /tv/ telegram group?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14654

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14707

File: 68590b59d50b538⋯.jpg (725.63 KB,734x1800,367:900,68590b59d50b5385e06a49f622….jpg)

Dear god, the color contrast does not help with reading

what the fuck guys

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14708

>>14707

Looks fine to me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14715

>76rd attention whoregry champ

Boy oh boy let's see what happens

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14720

File: ebc2f47101fa759⋯.png (1.11 MB,1196x720,299:180,vlcsnap-2018-12-07-16h57m0….png)

>>14715

Ha ha, I missed that. Should be fun!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14724

>words like "movie" or "director" forbidden (there are only "films" and "auteurs"

you obviously have no idea what an auteur is. it's as clear as day that you're all just pretentious tryhards. i've seen so many posts where people hate on movies or directors just because of their popularity, while everything obscure is GOAT based on nothing but its obscurity. go read some books so you at least have the knowledge to match up to the level of your pretentiousness.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14725

>>14715

Can't wait to see how even more newfags affect what remains of the board, at this point I've learned to sit back and enjoy watching the world burn like a finely aged film.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14727

>>143

Boy, can't wait for yet another comfy slow board to get raped and become a dead shitposting board. Bravo Chodemonkey, and death to the Attention-Hungry Games; fuck Hunger Games.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14828

File: c0ebbb8532472ca⋯.jpg (27.81 KB,500x369,500:369,1556306345773.jpg)

This board should be less strict to posters. Insofar would fit better on subreddit.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14830

Elaborate if anything we're not strict enough.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.14832

File: f3a7ecbc5496284⋯.png (2.88 KB,47x63,47:63,86fsvFSWKE7feM8yhBOjLAtwj2….png)

>>14828

Yes, what exactly are you prevented from doing?

We have almost none of these rules

https://www.reddit.com/r/TrueFilm/about/rules/

https://www.reddit.com/r/movies/wiki/index

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15379

File: 348f7f893273369⋯.jpg (85.18 KB,1387x702,1387:702,1508621316520.jpg)

>all these general threads

This board looks like a comment section on imdb to recommend more related movies.

If were not for the chilling humor or out of topic subjects, /tv/ would have a better userbase for discussions of cinema. Sadly they have no taste.

But I've seen more good films being discussed there than on here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15381

>>15379

Then go back ''nigger'

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15383

The term "general thread" makes me think of fast-moving chit-chat about news happenings or whatever, not so much a slow thread dedicated to a specific topic.

General topic threads are pushed aside whenever /film/ gets linked somewhere and a bunch of people come. New users make low-effort threads that don't get much traction and are soon forgotten. So I'm not sure if that is an improvement?

An unfortunate drawback of these old threads is they make the board feel stale. I suppose the page count could be reduced to force more freshness. But that leads to a new problem of potentially losing "valuable" threads like references and requests.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15475

>>1199

Huh, I never noticed that option. Let's try this out.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15593

Not sure if this question can be posted here...

I see that this board is about arthouse films. Is there a place to discuss about "mediocre", not popular genre films? They can be bad and silly, but I have such a soft spot for them. I've had a hard time finding a place to discuss about them (sanely) on the internet :/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15595

>>15593

Why not here?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15596

>>15595

I thought people here are more into arthouse films or good films overall so they wouldn't care about VOD action movies, for example.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15597

File: 290967933c5a51e⋯.png (Spoiler Image,505.95 KB,1024x1023,1024:1023,290967933c5a51e0d5edd60b8e….png)

>>15596

In general sure, but if you make good posts about those films i doubt anyone would complain there's nobody here anyway

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15598

>>15597

Damn, come to think of it, the latest post here was 5 days ago already. Everyone seems to migrate to the board on Julay :(

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15599

Last 50 posts is finally back?

>>15596

>VOD action movies

fine with me. if you look at old threads people have posted about all kinds of movies

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15600

>>15599

Thank you.

There is so much content here that I don't want this board to be abandoned. I'm too stubborn to change haha.

Actually I came here after the imdb boards were shut down (someone lists this board as one of the sites for film discussion). Such a nice cozy place for a chan site.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15603

>>15600

This board is indeed quite the gem

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15606

>>15603

>>15600

The Julay.World version is just as good but lacks the vast backlog this original one has. I'm not a certified representative but you are more than welcome to check it out, do so at least for a couple of minutes it's not like there's a bunch of anons there either

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15724

The front page keeps reverting to August 17. Also I get popup errors when I try to post.

Has Ron explained why the site doesn't work? I don't see a /meta/ or /sudo/ board. Those boards usually turned into a shitshow but it's worse to have no communication at all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15728

Is it possible to post normally now? It's sad to see the board dying off because of 8chan's demise... Tho I find anon.cafe is a better platform.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15729

>>15724

Codemonkey says he resigned from this site Nov 3. (I don't know who's running it now.) Meanwhile he's a huge hit on Election Fraud Twitter, gaining about 210k followers since October.

Oct - https://archive.is/oCrwN

Today - https://archive.vn/HkD8N

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15737

File: b012957100569fd⋯.jpg (31.55 KB,720x560,9:7,When_my_knife_strikes_you.jpg)

8kun admin message:

# Please prepare your visitors for a tor only experience — by administrator at 01/11/21 (Mon)

We may be deplatformed and TOR will be the only way to access 8kun at that time.

http://www.jthnx5wyvjvzsxtu.onion/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15738

Is anon.cafe down?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15739

>>15738

It was briefly, now it's back.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15743

>>15738

anon.cafe has been down for 2 days

8kun barely works but we have a new IRC channel: #film @ irc.brokensphere.net

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.15744

I GOT A POST THROUGH

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



[Return][Go to top][Catalog][Nerve Center][Random][Post a Reply]
Delete Post [ ]
[]
[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]