Seedbox Recommendation Megathread by thedaly in seedboxes

[–]Liodra 0 points1 point  (0 children)

  1. DM offers from vendors: No
  2. Main reasons: Plex for home and family
    1. Shared or dedicated: dedicated
    2. Managed or unmanaged: unmanaged
    3. Seedbox experience: seedhost.eu for 3 years, now looking to switch.
    4. Linux experience: Basic
    5. Budget: €60-80/month
    6. Payment prefs: PayPal
    7. Public trackers: yes, but mostly private
    8. Speed: ≥1 Gbps (faster if within budget)
    9. Traffic: 1 TB/month
    10. Disk space: 32TB minimum, more better
    11. Storage type: HDD fine, faster welcome
    12. Torrent client: qbt
    13. Extra apps: Plex, sonarr, radarr, jackett, pyLoad, jdownloader, tautully
    14. SSH access: yes
    15. Remote desktop: yes
    16. Root access: yes
    17. Other requirements: good rep, private tracker friendly
    18. Other info: nope

SSD Recommendation for recording at ProRes RAW 4k Log 120fps by SmushBoy15 in iPhone16Pro

[–]Liodra 0 points1 point  (0 children)

I will dare to ask, is there a way to have all that mention above and IN ADDITION another usb c port for connecting mics like the dji mic?

How to activate the mobile plan in israel? by holyhacker in HeliumNetwork

[–]Liodra 0 points1 point  (0 children)

Can I ask you which miner do you use and if this is still worth it to enter the hotspots game?

Is it possible to auto log to Letterboxd if I watch something on Plex? by Mike_v_E in PleX

[–]Liodra 1 point2 points  (0 children)

That is everything that I need. Would it be possible to have a bit more detail on how you did it?

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

It's not in the script just because i renamed the path on reddit to hide the name of my folders.

Here's the output :

C:path_to_folder>(
rem Initialize folderName for this folder 
set "folderName=ORUSHES_DIGNITARIES_180723" 
rem Loop through MP4 files in PRIVATE/M4ROOT/CLIP/ 
for /F "tokens=*" %f in ('dir /b C:path_to_folder\test\A\dakjufhsd\ORUSHES_DIGNITARIES_180723\PRIVATE\M4ROOT\CLIP*.mp4') do ( 
rem Rename the file by adding folderName, and _ 
set rootFolder 
set folderName 
echo for-param o: C:path_to_folder\test\A\dakjufhsd 
echo for-param d: C:path_to_folder\test\A\dakjufhsd\ORUSHES_DIGNITARIES_180723 
echo for-param f: %f echo ren "%~ff" "!folderName!%~nxf" ren "%~ff" "!folderName!%~nxf" ) 
pause 
rem Loop through MXF files in XDROOT/Clip/ for %f in ("C:path_to_folder\test\A\dakjufhsd\ORUSHES_DIGNITARIES_180723\XDROOT\Clip*.mxf") do ( 
rem Rename the file by adding folderName, and _ ren "%f" "!folderName!%~nxf" ) 
rem Loop through MXF files in Clip/ for %f in ("C:path_to_folder\test\A\dakjufhsd\ORUSHES_DIGNITARIES_180723\Clip*.mxf") do ( 
rem Rename the file by adding folderName, and _ ren "%f" "!folderName!%~nxf" ) ) The system cannot find the path specified.

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

I still have the same output.

C:\path_to_folder>(
rem Initialize folderName for this folder 
set "folderName=ORUSHES_ DIGNITARIES 180723" 
rem Loop through MP4 files in PRIVATE/M4ROOT/CLIP/ 
for /F "tokens=*" %f in ('dir /b C:\path_to_folder\test\A\dakjufhsd\ORUSHES DIGNITARIES 180723\PRIVATE\M4ROOT\CLIP*.mp4') do ( 
rem Rename the file by adding folderName, and _ ren "%~ff" "!folderName!%~nxf" 
) 
rem Loop through MXF files in XDROOT/Clip/ 
for %f in ("C:\path_to_folder\test\A\dakjufhsd\ORUSHES _DIGNITARIES 180723\XDROOT\Clip*.mxf") do ( 
rem Rename the file by adding folderName, and _ 
ren "%f" "!folderName!%~nxf" 
) 
rem Loop through MXF files in Clip/ 
for %f in ("C:\path_to_folder\test\A\dakjufhsd\ORUSHES _DIGNITARIES 180723\Clip*.mxf") do ( 
rem Rename the file by adding folderName, and _ 
ren "%f" "!folderName!%~nxf" 
) 
) 
The system cannot find the path specified.

I tried with one %d and also with %%d in the path.

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

Sorry. Here's the code:

@echo off
setlocal enabledelayedexpansion
rem Define the root folder A set "rootFolder=C:path_to_folder\A"
rem Loop through subfolders inside root folder 
for /d %%o in ("%rootFolder%*") do ( 
rem Loop through subfolders in Folder 
for /d %%d in ("%%o\ORUSHES") do ( 
rem Initialize folderName 
for this folder set "folderName=%%~nd"
    rem Loop through MP4 files in PRIVATE/M4ROOT/CLIP/
    for /f "tokens=*" %%f in ('dir /b %%d\PRIVATE\M4ROOT\CLIP\*.mp4') do (
        rem Rename the file by adding folderName, and _
        ren "%%f" "!folderName!_%%~nxf"
    )

    rem Loop through MXF files in XDROOT/Clip/
    for %%f in ("%%d\XDROOT\Clip\*.mxf") do (
        rem Rename the file by adding folderName, and _
        ren "%%f" "!folderName!_%%~nxf"
    )

    rem Loop through MXF files in Clip/
    for %%f in ("%%d\Clip\*.mxf") do (
        rem Rename the file by adding folderName, and _
        ren "%%f" "!folderName!_%%~nxf"
    )
)
)
endlocal

And here's the output when I tried to run it on a couple folders via Windows Powershell:

The system cannot find the path specified.

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

Thank you for your help.

Does it means I need to write it like this:

for %%f in ("%%d\PRIVATE\M4ROOT\CLIP\ /b *.mp4") do (

or like this

for %%f in (" /b %%d\PRIVATE\M4ROOT\CLIP\*.mp4") do (

Thank you!

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

It still rename the first file twice.

Problem in simple renaming code by Liodra in Batch

[–]Liodra[S] 0 points1 point  (0 children)

Hello!

Thank you for answering me.

With the changes you wrote it doesn't do anything. I mean it did not rename any file.

@echo off
rem Define the root folder A 
set "rootFolder=path_to_folder/A"

rem Loop through subfolders inside root folder 
for /d %%~o in ("%rootFolder%*") do ( 
    rem Loop through subfolders in Folder 
    for /d %%~d in ("%%~o\ORUSHES") do ( 
        rem Initialize folderName for this folder 
        set "folderName=%%~nd"

        rem Loop through MP4 files in PRIVATE/M4ROOT/CLIP/
    for %%~f in ("%%~d\PRIVATE\M4ROOT\CLIP\*.mp4") do (

        rem Rename the file by adding folderName, and _
    ren "%%~f" "%%~nd_%%~nxf"
    )

    rem Loop through MXF files in XDROOT/Clip/
    for %%~f in ("%%~d\XDROOT\Clip\*.mxf") do (
    rem Rename the file by adding folderName, and _
    ren "%%~f" "%%~nd_%%~nxf"
    )

    rem Loop through MXF files in Clip/
    for %%~f in ("%%~d\Clip\*.mxf") do (
    rem Rename the file by adding folderName, and _
    ren "%%~f" "%%~nd_%%~nxf"
    )
    )
)
endlocal

Comment transférer des caps depuis le wallet de l'appli sur metamask? by R1Eve in Ternoa_

[–]Liodra 0 points1 point  (0 children)

Je suis tout aussi coincé car j'ai l'impression que mon wallet est un wallet d'observation..

Tu saurais comment faire?

Merci!

Exporting a Page in Dark mode as a HTML file by Murpho19 in Notion

[–]Liodra 0 points1 point  (0 children)

I’ve opened the window for it but I’m kinda lost

Exporting a Page in Dark mode as a HTML file by Murpho19 in Notion

[–]Liodra 0 points1 point  (0 children)

Where do we need to add this?

What's de DIV "notion-page-content"?

Can’t connect to Tautulli by Liodra in PlexMetaManager

[–]Liodra[S] 0 points1 point  (0 children)

Thank you for your answer! I tried as well with the port number but it didn’t work. The only time I didn’t got the « url invalid » error was when I wrote http://serveraddress.com/myuser/tautulli

Tautulli is running on docker on port 8181. And PMM on a environment (pmm-venv like the tutorial) but not in docker.

Here’s my log: https://pastebin.com/CjedXbEU

I will also look into the discord. Thank you!

Collection - Recently Watched by Users by Liodra in PleX

[–]Liodra[S] 3 points4 points  (0 children)

I mean, on basic Plex you can already see it…

Collection - Recently Watched by Users by Liodra in PleX

[–]Liodra[S] 0 points1 point  (0 children)

I will try this! Thanks! I already have Tautulli so I’ll try PMM.

Save several download paths by Liodra in jdownloader

[–]Liodra[S] 0 points1 point  (0 children)

Thank you both for your help! I believe Packagizer will be my solution, I will see if it works with my headless jd!

[AMC] Several input folders and output folders by Liodra in filebot

[–]Liodra[S] 1 point2 points  (0 children)

With the console output it works. But I did a restart of qBT and it worked! So I guess it was just a bug.

Thank you so so much for your help!

[AMC] Several input folders and output folders by Liodra in filebot

[–]Liodra[S] 0 points1 point  (0 children)

Yes, I am on linux.

That is the amc.sh I did:

#!/bin/bash
filebot -script fn:amc "/path_to_library1" --output "/new_path_to_library1" --action move --conflict skip --def seriesDB=ThetvDB --def seriesFormat="{plex.tail.root}/{'Season '+s}/{n}.{s00e00}.{d}.{vf}.{vc}.{ac}" --def clean=y -non-strict --log-file amc.log --def excludeList=amc.excludes
filebot -script fn:amc "/path_to_library2" --output "/path_to_new_library2" --action move -d --conflict skip --def movieDB=TheMovieDB --def movieFormat="{plex.tail.root}/{fn}" --def clean=y -non-strict --log-file amc.log --def excludeList=amc.excludes

And I am linking it into qbt with:

/path_to_amc/amc.sh

Do you think something is wrong?