Skip to content

Commit

Permalink
Mejorado de Exportaciones y adaptación a nomenclatura
Browse files Browse the repository at this point in the history
Se optimizaron los settings de exports para las principales redes sociales, y lagunas utilidades.

Ahora el software reconoce de forma rudimentaria nomenclatura y modifica el prefijo según que tipo export se esté realizando.

El software cuenta con lenguaje ingles y español

La carpeta de instalación por defecto es C:\LOGOS

Se emprolijó el código y se crearon nuevas clases para mantener el orden.

El software automáticamente detecta si el video es entrelazado para aplicar el filtro.
  • Loading branch information
logos914 committed Feb 17, 2019
1 parent 82dc964 commit 1c3cb17
Show file tree
Hide file tree
Showing 18 changed files with 2,496 additions and 733 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# Carpetas usadas por Zero para el despliegue y otras Operaciones
zeroOps/

# User-specific files
*.suo
*.user
Expand Down Expand Up @@ -177,6 +180,9 @@ BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt




# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
Expand Down
2 changes: 2 additions & 0 deletions Cliente FFMPEG.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.27130.2036
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cliente FFMPEG", "Cliente FFMPEG\Cliente FFMPEG.csproj", "{EFDA35A9-CBDE-4049-ADE8-E01E8BD6C3B4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B2DE54D2-8963-4227-872C-D7AFB49494F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
28 changes: 16 additions & 12 deletions Cliente FFMPEG/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,35 @@
</startup>
<appSettings>
<add key="entorno" value="audiovisual" />
<add key="exportaciones" value="C:\DMAOPS\ANANA\EXPORTS" />
<add key="rutaFFMPEG" value="&quot;C:\DMAOPS\FFMPEG\ffmpeg.exe&quot;" />
<add key="rutaPROBE" value="&quot;C:\DMAOPS\FFMPEG\ffprobe.exe&quot;" />
<add key="rutaPLAY" value="&quot;C:\DMAOPS\FFMPEG\ffplay.exe&quot;" />
<add key="rutaEXIF" value="&quot;C:\DMAOPS\EXIFTOOL\exiftool.exe&quot;" />
<add key="rutaTEMPORAL" value="C:\DMAOPS\TRABAJOS\ANANA\" />
<add key="lenguaje" value="es" />
<add key="exportaciones" value="C:\LOGOS\ANANA\EXPORTS" />
<add key="rutaMosca" value="C:\\LOGOS\\ASSETS\\mosca.png" />
<add key="rutaMarca" value="C:\\LOGOS\\ASSETS\\watermark.png" />
<add key="rutaFFMPEG" value="&quot;C:\LOGOS\FFMPEG\ffmpeg.exe&quot;" />
<add key="rutaPROBE" value="&quot;C:\LOGOS\FFMPEG\ffprobe.exe&quot;" />
<add key="rutaPLAY" value="&quot;C:\LOGOS\FFMPEG\ffplay.exe&quot;" />
<add key="rutaEXIF" value="&quot;C:\LOGOS\EXIFTOOL\exiftool.exe&quot;" />
<add key="rutaMEDIAINFO" value="&quot;C:\LOGOS\MEDIAINFO\MediaInfo.exe&quot;" />
<add key="rutaTEMPORAL" value="C:\LOGOS\TRABAJOS\ANANA\" />
<add key="motorVideo" value="NVENC" />
<add key="fpsExports" value="25" />
<add key="trabajosConcurrentes" value="1" />
<!--- Los posible valores del mtoro de video son NVENC, AMDAVC, INTELQS, x264 -->
<add key="ClientSettingsProvider.ServiceUri" value="" />
<add key="ClientSettingsProvider.ConnectionStringName" value="DefaultConnection" />
</appSettings>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source = |SQL/CE|" />
</connectionStrings>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientWindowsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" connectionStringName="DefaultConnection" credentialsProvider="" />
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" connectionStringName="DefaultConnection" />
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source = |SQL/CE|" />
</connectionStrings>
</configuration>
19 changes: 15 additions & 4 deletions Cliente FFMPEG/Cliente FFMPEG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<PublisherName>Ignacio Tula</PublisherName>
<SuiteName>Paquete Audiovisual</SuiteName>
<AutorunEnabled>true</AutorunEnabled>
<ApplicationRevision>15</ApplicationRevision>
<ApplicationVersion>1.3.1.%2a</ApplicationVersion>
<ApplicationRevision>19</ApplicationRevision>
<ApplicationVersion>1.4.3.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand All @@ -48,13 +48,14 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<CodeAnalysisIgnoreGeneratedCode>false</CodeAnalysisIgnoreGeneratedCode>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>E7C2EB263783646B6FF4125AC859CC590F6155EA</ManifestCertificateThumbprint>
Expand All @@ -64,7 +65,7 @@
</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>false</SignManifests>
Expand Down Expand Up @@ -109,6 +110,7 @@
<ItemGroup>
<Compile Include="ayudanteConfiguracion.cs" />
<Compile Include="ayudanteItemsEnColaTrabajo.cs" />
<Compile Include="ayudanteParametrizadorffmpeg.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
Expand All @@ -118,6 +120,15 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tramite.cs" />
<EmbeddedResource Include="Form1.en-001.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.en.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.es.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
Expand Down
Loading

0 comments on commit 1c3cb17

Please sign in to comment.