▲ 252 ▼ Where are all the videos and gifs? (lemmy.world) submitted 3 years ago by sneezelord@lemmy.world to c/nostupidquestions@lemmy.world 113 comments fedilink hide all child comments I’ve noticed that on Lemmy there aren’t really any videos/gifs as I scroll. I just see post titles, links, or images. Is there a reason videos and gifs aren’t showing up on my feed?
[–] hitagi@ani.social 35 points 3 years ago (8 children) GIFs work. At least in the comments they do. Videos can be (somewhat) embedded if you use an external host (i.e. catbox). GIF sample: permalink fedilink source hideshow 16 child comments replies: [–] sorenant@lemmy.world 26 points 3 years ago (4 children) I'm a bitter old man who dislikes inline gifs in the comments, is there a way to block it like I did with RES on Reddit? permalink fedilink source parent hideshow 8 child comments replies: [–] igorlogius@lemmy.world 9 points 3 years ago You can use a userscript manager like greasymonkey to inject a javascript snippet that will hide images in comments which have obvious urls to gifs and replace them with actual links or hide them here an example snippet: (() => { let timerID; function onChange() { Array.from(document.querySelectorAll('.comment-node img[src$=".gif"]')).forEach((e) => { const src = e.getAttribute('src'); if (typeof src === 'string' && src.startsWith('http')) { e.setAttribute('src', ''); const a = document.createElement('a'); a.innerText = 'link to gif'; a.href = src; e.parentNode.appendChild(a); } }); } // if we have many mution events, wait until the site has settled function delayed_onChange() { clearTimeout(timerID); timerID = setTimeout(onChange, 500); } function init() { // start observer new MutationObserver(delayed_onChange).observe(document.body, { attributes: false, childList: true, subtree: true, }); delayed_onChange(); } setTimeout(init, 500); })(); permalink fedilink source parent [–] hitagi@ani.social 4 points 3 years ago I'm not aware of an option like that but that sounds like a good feature. permalink fedilink source parent [–] dismalnow@kbin.social 3 points 3 years ago* I’m a bitter old man who dislikes inline gifs in the comments I've waffled on this issue over the last 25 years, but agree that the option to show/block should still exist. First I was against it. Mostly because it was change - cluttering my once pristine BBSs Then I enjoyed it. Because it added some liveliness to the threads I read, and because I was in a smaller collective of folks that knew how to do it without being annoying. Then I was against it again. Because the forums/boards because overstuffed with people shitposting ONLY animated gifs. permalink fedilink source parent [–] ThatGirlKylie@lemmy.world 3 points 3 years ago Using wefwef at the moment (Apollo inspired) you can use it on android desktop and iPhone as it is a webapp and they show up as a link for me that I can then click and doesn’t embed it or inline it. permalink fedilink source parent [–] klynno64@lemmy.world 9 points 3 years ago (2 children) It's not a gif for me, just a still image. permalink fedilink source parent hideshow 4 child comments replies: [–] hitagi@ani.social 7 points 3 years ago (1 child) What client are you using? It plays as a GIF on the browser but it might be a still image in a mobile app. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 3 points 3 years ago (1 child) Yeah on Jerboa it looks like a still image. Still some work to go. permalink fedilink source parent hideshow 2 child comments replies: [–] else@lemmy.fmhy.ml 3 points 3 years ago (1 child) I'm using Thunder and it's a gif. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent [–] troyunrau@lemmy.ca 1 point 3 years ago It's a gif for me. Are you using an app or something that maybe doesn't support it? Or on kbin or something maybe? permalink fedilink source parent [–] klynno64@lemmy.world 2 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent [–] newthrowaway20@lemmy.world 1 point 3 years ago (2 children) I dunno what it is with catbox but nothing from there ever loads for me. permalink fedilink source parent hideshow 4 child comments replies: [–] hitagi@ani.social 2 points 3 years ago Catbox has a FAQ and lists connectivity issues in certain countries like Australia, Ireland/UK, Iran, Afghanistan or users of Comcast and Quad9. permalink fedilink source parent [–] lontong@kbin.social 1 point 3 years ago They block some countries. I'm in Indonesia and I can't open catbox too without using VPN. permalink fedilink source parent [–] klynno64@lemmy.world 1 point 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent [–] klynno64@lemmy.world 0 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent [–] klynno64@lemmy.world -1 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent [+] NotAPenguin@kbin.social -14 points 3 years ago (1 child) When people say "gifs" nowadays they don't mean actual .gif files, .gif files are very outdated and barely used at this point. Gif has just become the term for short videos without sound permalink fedilink source parent hideshow 2 child comments replies: [–] hitagi@ani.social 1 point 3 years ago I think actual .GIF files are still used but oftentimes they're just converted to .WEBM's without sound. permalink fedilink source parent
[–] sorenant@lemmy.world 26 points 3 years ago (4 children) I'm a bitter old man who dislikes inline gifs in the comments, is there a way to block it like I did with RES on Reddit? permalink fedilink source parent hideshow 8 child comments replies: [–] igorlogius@lemmy.world 9 points 3 years ago You can use a userscript manager like greasymonkey to inject a javascript snippet that will hide images in comments which have obvious urls to gifs and replace them with actual links or hide them here an example snippet: (() => { let timerID; function onChange() { Array.from(document.querySelectorAll('.comment-node img[src$=".gif"]')).forEach((e) => { const src = e.getAttribute('src'); if (typeof src === 'string' && src.startsWith('http')) { e.setAttribute('src', ''); const a = document.createElement('a'); a.innerText = 'link to gif'; a.href = src; e.parentNode.appendChild(a); } }); } // if we have many mution events, wait until the site has settled function delayed_onChange() { clearTimeout(timerID); timerID = setTimeout(onChange, 500); } function init() { // start observer new MutationObserver(delayed_onChange).observe(document.body, { attributes: false, childList: true, subtree: true, }); delayed_onChange(); } setTimeout(init, 500); })(); permalink fedilink source parent [–] hitagi@ani.social 4 points 3 years ago I'm not aware of an option like that but that sounds like a good feature. permalink fedilink source parent [–] dismalnow@kbin.social 3 points 3 years ago* I’m a bitter old man who dislikes inline gifs in the comments I've waffled on this issue over the last 25 years, but agree that the option to show/block should still exist. First I was against it. Mostly because it was change - cluttering my once pristine BBSs Then I enjoyed it. Because it added some liveliness to the threads I read, and because I was in a smaller collective of folks that knew how to do it without being annoying. Then I was against it again. Because the forums/boards because overstuffed with people shitposting ONLY animated gifs. permalink fedilink source parent [–] ThatGirlKylie@lemmy.world 3 points 3 years ago Using wefwef at the moment (Apollo inspired) you can use it on android desktop and iPhone as it is a webapp and they show up as a link for me that I can then click and doesn’t embed it or inline it. permalink fedilink source parent
[–] igorlogius@lemmy.world 9 points 3 years ago You can use a userscript manager like greasymonkey to inject a javascript snippet that will hide images in comments which have obvious urls to gifs and replace them with actual links or hide them here an example snippet: (() => { let timerID; function onChange() { Array.from(document.querySelectorAll('.comment-node img[src$=".gif"]')).forEach((e) => { const src = e.getAttribute('src'); if (typeof src === 'string' && src.startsWith('http')) { e.setAttribute('src', ''); const a = document.createElement('a'); a.innerText = 'link to gif'; a.href = src; e.parentNode.appendChild(a); } }); } // if we have many mution events, wait until the site has settled function delayed_onChange() { clearTimeout(timerID); timerID = setTimeout(onChange, 500); } function init() { // start observer new MutationObserver(delayed_onChange).observe(document.body, { attributes: false, childList: true, subtree: true, }); delayed_onChange(); } setTimeout(init, 500); })(); permalink fedilink source parent
[–] hitagi@ani.social 4 points 3 years ago I'm not aware of an option like that but that sounds like a good feature. permalink fedilink source parent
[–] dismalnow@kbin.social 3 points 3 years ago* I’m a bitter old man who dislikes inline gifs in the comments I've waffled on this issue over the last 25 years, but agree that the option to show/block should still exist. First I was against it. Mostly because it was change - cluttering my once pristine BBSs Then I enjoyed it. Because it added some liveliness to the threads I read, and because I was in a smaller collective of folks that knew how to do it without being annoying. Then I was against it again. Because the forums/boards because overstuffed with people shitposting ONLY animated gifs. permalink fedilink source parent
[–] ThatGirlKylie@lemmy.world 3 points 3 years ago Using wefwef at the moment (Apollo inspired) you can use it on android desktop and iPhone as it is a webapp and they show up as a link for me that I can then click and doesn’t embed it or inline it. permalink fedilink source parent
[–] klynno64@lemmy.world 9 points 3 years ago (2 children) It's not a gif for me, just a still image. permalink fedilink source parent hideshow 4 child comments replies: [–] hitagi@ani.social 7 points 3 years ago (1 child) What client are you using? It plays as a GIF on the browser but it might be a still image in a mobile app. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 3 points 3 years ago (1 child) Yeah on Jerboa it looks like a still image. Still some work to go. permalink fedilink source parent hideshow 2 child comments replies: [–] else@lemmy.fmhy.ml 3 points 3 years ago (1 child) I'm using Thunder and it's a gif. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent [–] troyunrau@lemmy.ca 1 point 3 years ago It's a gif for me. Are you using an app or something that maybe doesn't support it? Or on kbin or something maybe? permalink fedilink source parent
[–] hitagi@ani.social 7 points 3 years ago (1 child) What client are you using? It plays as a GIF on the browser but it might be a still image in a mobile app. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 3 points 3 years ago (1 child) Yeah on Jerboa it looks like a still image. Still some work to go. permalink fedilink source parent hideshow 2 child comments replies: [–] else@lemmy.fmhy.ml 3 points 3 years ago (1 child) I'm using Thunder and it's a gif. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent
[–] tgxn@lemmy.tgxn.net 3 points 3 years ago (1 child) Yeah on Jerboa it looks like a still image. Still some work to go. permalink fedilink source parent hideshow 2 child comments replies: [–] else@lemmy.fmhy.ml 3 points 3 years ago (1 child) I'm using Thunder and it's a gif. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent
[–] else@lemmy.fmhy.ml 3 points 3 years ago (1 child) I'm using Thunder and it's a gif. permalink fedilink source parent hideshow 2 child comments replies: [–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent
[–] tgxn@lemmy.tgxn.net 1 point 3 years ago Thunder looks sick! I'll try that out :) permalink fedilink source parent
[–] troyunrau@lemmy.ca 1 point 3 years ago It's a gif for me. Are you using an app or something that maybe doesn't support it? Or on kbin or something maybe? permalink fedilink source parent
[–] klynno64@lemmy.world 2 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent
[–] newthrowaway20@lemmy.world 1 point 3 years ago (2 children) I dunno what it is with catbox but nothing from there ever loads for me. permalink fedilink source parent hideshow 4 child comments replies: [–] hitagi@ani.social 2 points 3 years ago Catbox has a FAQ and lists connectivity issues in certain countries like Australia, Ireland/UK, Iran, Afghanistan or users of Comcast and Quad9. permalink fedilink source parent [–] lontong@kbin.social 1 point 3 years ago They block some countries. I'm in Indonesia and I can't open catbox too without using VPN. permalink fedilink source parent
[–] hitagi@ani.social 2 points 3 years ago Catbox has a FAQ and lists connectivity issues in certain countries like Australia, Ireland/UK, Iran, Afghanistan or users of Comcast and Quad9. permalink fedilink source parent
[–] lontong@kbin.social 1 point 3 years ago They block some countries. I'm in Indonesia and I can't open catbox too without using VPN. permalink fedilink source parent
[–] klynno64@lemmy.world 1 point 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent
[–] klynno64@lemmy.world 0 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent
[–] klynno64@lemmy.world -1 points 3 years ago It's not a gif for me, just a still image. permalink fedilink source parent
[+] NotAPenguin@kbin.social -14 points 3 years ago (1 child) When people say "gifs" nowadays they don't mean actual .gif files, .gif files are very outdated and barely used at this point. Gif has just become the term for short videos without sound permalink fedilink source parent hideshow 2 child comments replies: [–] hitagi@ani.social 1 point 3 years ago I think actual .GIF files are still used but oftentimes they're just converted to .WEBM's without sound. permalink fedilink source parent
[–] hitagi@ani.social 1 point 3 years ago I think actual .GIF files are still used but oftentimes they're just converted to .WEBM's without sound. permalink fedilink source parent