
Recherche avancée
Autres articles (33)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (8775)
-
C# process and ffmpeg output pipe
21 novembre 2018, par KonradI’m trying to replicate the following call from command line in C# :
C:\Temp\Proj\FFmpeg\bin\ffmpeg.exe -re -i C:\test\test.ts -map data-re -codec copy -f data - | java -jar C:\Temp\Proj\FFmpeg\bin\AnotherProj.jar 1
As you can see, FFmpeg pipes the data into an app built with Java. And my implementation :
var x = RunCmdProcess($"/C {_ffmpegPath} -re -i {_videoPath} - map data-re -codec copy -f data - | java -jar {_anotherProjPath} 1", out outputMessage);
protected Process RunCmdProcess(string arguments, out string outputMessage)
{
ProcessStartInfo p = new ProcessStartInfo("cmd.exe");
p.RedirectStandardOutput = true;
p.RedirectStandardError = true;
p.RedirectStandardInput = true;
p.UseShellExecute = false;
p.CreateNoWindow = true;
p.WindowStyle = ProcessWindowStyle.Hidden;
p.Arguments = arguments;
var sb = new StringBuilder();
var x = Process.Start(p);
var stdOut = x.StandardOutput.ReadToEnd();
var stdErr = x.StandardError.ReadToEnd();
sb.Append(stdOut);
if (!string.IsNullOrEmpty(stdErr)) sb.Append(stdErr);
x.WaitForExit();
outputMessage = sb.ToString();
return x;
}The result of the following call is :
[NULL @ 0000028335e82380] Unable to find a suitable output format for ’pipe :’
pipe: : Invalid argumentI double checked the paths to the files given in the RunCmdProcess function as well as tried enclosing the arguments (after /C) with quotation marks. No matter what I try, I still get the same error from FFmpeg.
-
matroskaenc : Allow chapters to be written in trailer
3 septembre 2013, par John Stebbinsmatroskaenc : Allow chapters to be written in trailer
This allows creation of frame accurate chapter marks from sources like
DVD and BD where the precise chapter location is not known until the
chapter mark has been reached during reading.Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
fate/matroska : Add test for ProRes and bz2 compression
28 décembre 2019, par Andreas Rheinhardtfate/matroska : Add test for ProRes and bz2 compression
This test tests that demuxing ProRes that is muxed like it should be in
Matroska (i.e. with the first header ("icpf") atom stripped away) works ;
it also tests bz2 decompression as well as the handling of
unknown-length clusters.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com>