Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Error Premiere 25.6.1 / no a a

New Here ,
Nov 20, 2025 Nov 20, 2025

Ayer estuve trabajando una proyecto en premiere y hoy al tratar de abrilo me tira el mensaje "este proyecto se guardo en una versión mas reciente y no se puede abrir en esta", pero si estoy usando la versión mas reciente de Premiere. Tampoco me deja abrir los archivos de auto guardados.

Y al intentar importar mi archivo a after effects me dice que "el numero de versión es incorrecto o el archivo está dañado", me tira el mismo erro con los archivos autoguardado.

 

No tengo problemas con abrir otros proyectos que he trabajo.


Que puede estar pasando?

142
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Nov 27, 2025 Nov 27, 2025

Thanks for your patience! We’ve released an app that solves this problem by converting the v25.6.0-saved projects back to the v25 format. Please refer to this post to download this app & to know more about this issue. Hope it helps. Let us know if you have any questions.

 

Regards,

Sumeet

Translate
Community Expert ,
Nov 20, 2025 Nov 20, 2025

Install the Beta version and it will open there.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 20, 2025 Nov 20, 2025

Fix Script PowerShell for you project

Add-Type -AssemblyName System.IO.Compression.FileSystem

Get-ChildItem -Filter *.prproj | ForEach-Object {
$in=$_.FullName
$out=Join-Path $_.DirectoryName ($_.BaseName + "_downgrage.prproj")

$fs=[IO.File]::OpenRead($in)
$gz=New-Object IO.Compression.GZipStream($fs,[IO.Compression.CompressionMode]::Decompress)
$r =New-Object IO.StreamReader($gz,[Text.Encoding]::UTF8)
$xml=$r.ReadToEnd()
$r.Close();$gz.Close();$fs.Close()

# БЕЗ третього аргумента – замінює всі входження
$xml = $xml.Replace('Version="44"','Version="43"')

$ofs=[IO.File]::Create($out)
$ogz=New-Object IO.Compression.GZipStream($ofs,[IO.Compression.CompressionMode]::Compress)
$w =New-Object IO.StreamWriter($ogz,[Text.Encoding]::UTF8)
$w.Write($xml)
$w.Close();$ogz.Close();$ofs.Close()

Write-Host "Done $out"
}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Nov 20, 2025 Nov 20, 2025

Hi claudio32400031azz6,

We're sorry about the poor experience. We're working on a solution. For more details, please refer to this post. Hope it helps.

 

Thanks,

Sumeet

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Nov 27, 2025 Nov 27, 2025
LATEST

Thanks for your patience! We’ve released an app that solves this problem by converting the v25.6.0-saved projects back to the v25 format. Please refer to this post to download this app & to know more about this issue. Hope it helps. Let us know if you have any questions.

 

Regards,

Sumeet

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines