Copy link to clipboard
Copied
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?
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
Copy link to clipboard
Copied
Install the Beta version and it will open there.
Copy link to clipboard
Copied
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"
}
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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
Find more inspiration, events, and resources on the new Adobe Community
Explore Now