Recent Posts

Pages: [1] 2 3 ... 10
1
Hello, did you resolve this issue? I am having the same problem.

--------------
Check the network settings on the screen
2
MagicInfo-I Premium / Content Synchronization - Multiple Channels
« Last post by dbassix on April 10, 2026, 01:51:35 PM »
Hi

i have Setup some S3 Players (DM40E).
I have a schedule with a playlist, containing Imagefiles and Video. The Content plays synchronized about all displays, no problem here.
When i add another Channel to the schedule, there is no synchronization anymore. No matter what content is on the second channel.

I need to have a schedule, where on channel 1 i have a playlist synchronized over all displays. On channel 2 should be a network stream (rtp).

Why is the playlist not synchronized anymore, if the schedule contains more than one channel?

Andreas
3
Hello, did you resolve this issue? I am having the same problem.
4
Hello @BFL_Tom

Did you solved your problem ?
5
MagicInfo-I Premium / Change time duration on API
« Last post by Chabrior37 on January 12, 2026, 12:55:02 PM »
Hello everyone,

I am trying to create an API to download new content into MagicInfo.

Overall, everything works fine. I can add content from a folder, edit playlists, and broadcast them on my screens. My only problem is the display time, which is set to 5 seconds by default. I can't see any options to change this default time. I tried to force it by inserting the entire configuration from my API, but it didn't work. Can anyone take a look and tell me how to modify my program, or if there is a configuration file I can modify to change this default time?

Thanks in advance and have a great day.

Code : with powershell

# ================= CONFIGURATION =================
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

$baseUrl     = "http://IP:PORT/MagicInfo"  
$username    = "user"  
$password    = "password"  
$playlistId   = "playlistID"
$playTime     = 30
$productType  = "PREMIUM"

# ================= AUTHENTIFICATION =================
$loginBody = @{ username = $username; password = $password } | ConvertTo-Json
Write-Host "Authentification..." -ForegroundColor Yellow
$loginResponse = Invoke-RestMethod -Uri "$baseUrl/restapi/v2.0/auth" -Method POST -ContentType "application/json;charset=UTF-8" -Body $loginBody
$token = $loginResponse.token
# ================= PLAYLIST DETAILS =================
$playlistDetailsUrl = "$baseUrl/restapi/v2.0/cms/playlists/$playlistId/details?productType=$productType"
$responseFull = Invoke-RestMethod -Uri $playlistDetailsUrl -Method GET -Headers @{ "api_key" = $token }
$playlistData = $responseFull.items

# ================= MODIFICATION =================
Write-Host "Tentative de forçage des durées..." -ForegroundColor Yellow

$totalPlayTime = 0

foreach ($content in $playlistData.contents) {
    $content.contentDuration = 30
    $content.playTime = 30
    $content.hasDefaultPlayTime = $false
   

    if ($content.PSObject.Properties['isChanged']) { $content.isChanged = $true }
   
    if ($content.effects) {
        $content.effects.contentDuration = 30
    }
    $totalPlayTime += 30
}

$playlistData.playTime = $totalPlayTime
$playlistData.defaultContentDuration = 30

function Clean-MagicInfoObject($obj) {
    if ($obj -is [System.Collections.IDictionary] -or $obj -is [PSCustomObject]) {
        foreach ($prop in $obj.PSObject.Properties) {
            if ($prop.Value -eq "N") { $prop.Value = $false }
            elseif ($prop.Value -eq "Y") { $prop.Value = $true }
        }
    }
}
Clean-MagicInfoObject $playlistData

# ================= MISE À JOUR =================
$updateUrl = "$baseUrl/restapi/v2.0/cms/playlists/$playlistId"
$playlistData | ConvertTo-Json -Depth 10 | Write-Host
$updateBody = $playlistData | ConvertTo-Json -Depth 20
$utf8Body = [System.Text.Encoding]::UTF8.GetBytes($updateBody)

$updateResponse = Invoke-RestMethod -Uri $updateUrl `
    -Method PUT `
    -Headers @{ "api_key" = $token; "Accept" = "application/json" } `
    -ContentType "application/json;charset=UTF-8" `
    -Body $utf8Body

Write-Host "Réponse du serveur : $($updateResponse.status)" -ForegroundColor Green

# ================= VERIFICATION =================
Start-Sleep -Seconds 2

$check = Invoke-RestMethod -Uri $playlistDetailsUrl -Method GET -Headers @{ "api_key" = $token }
$check.items.contents | Select-Object contentName, contentDuration | Format-Table -AutoSize

6
MagicInfo-I Premium / Update from S4 to S6 on OH46F
« Last post by info@zahnarztpraxis-konst on December 22, 2025, 11:06:15 AM »
Hello I see that our device OH46F supports S6. Is this true? And where I can find the update from S4 to S6?
We would like to add some Visual effect on our Monitor. Thanks.
On the official website there are many Update versions but i could only install one the 1020 but not the 2460.1 (It could not find the supported device after Publishing)
Thanks
7
MagicInfo / Re: Web Author cannot be launched
« Last post by OxyCyber78 on November 05, 2025, 02:56:09 PM »
Hi Pepijn,

Thanks for your reply.
Unfortunately webauthor.web_url is already set with localhost.
So i've tried the opposite with IP address but no luck ...

Best Regards,
8
MagicInfo / Re: Web Author cannot be launched
« Last post by Pepijn on October 29, 2025, 12:38:34 PM »
Hi,

Please try to edit your config.properties file, then change the WebAuthor link to localhost instead of your IP address.

Kind regards Pepijn.
9
MagicInfo / Re: Web Author cannot be launched
« Last post by OxyCyber78 on October 07, 2025, 12:35:00 PM »
Same issue here. Did anyone found a solution ?
10
MagicInfo / Re: Web Author cannot be launched
« Last post by chayyim on August 18, 2025, 09:28:05 AM »
Yes, I encountered the same problem and still can't find a solution.
Hopefully someone can help solve this problem.
Pages: [1] 2 3 ... 10