
Recherche avancée
Autres articles (25)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (5929)
-
saving frames from ffmpeg
12 décembre 2012, par user843681I am using ffmpeg in C# to discard a movie to its frame images and save each frame as a .png image. However, I can not save the frames ! the code operates, but then I can not save them to a folder ! I would like to know how can I save the output of ffmpeg to a folder.
public static void GetVideoFrames(string saveTo)
{
string mpegpath = @"E:\Csharp\ffvideo\";
string ffmpegPath = Path.Combine(mpegpath, "ffmpeg.exe");
string inputMovie = @"E:\Csharp\ffvideo\test.mp4";
string parameters = string.Format("ffmpeg -i {0} -f image2 frame-%1d.png -y {1}",
inputMovie, saveTo);
Process proc = new Process();
proc.StartInfo.FileName = ffmpegPath;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.Arguments = parameters;
proc.Start();
} -
Blu Ray pre-encoding
29 mai 2014, par user1122069I am working on authoring many Blu Ray disc images. I was wondering if there was a way to pre-encode video to MPEG-2 so that this process could run unattended overnight and over many days. I have already found that by importing the movie file on a Blu Ray image causes Toast to skip the encoding step.
Does anyone familiar with FFMPEG and Blu Ray know what command to use ? Or suggest another free application. It should be the same as would be ready to import to a disc with remuxixing or multiplexing, etc. I can fine tune it to match the VBR settings on Toast and post the result here also if it works (saves the time to encode).
I have about 50 1 hour videos to encode.
-
FFMPEG how to split avi to multi parts [on hold]
1er juin 2014, par user3695970am running ffmpeg.exe from windows xp i want to know is there a command i can cut .avi movie file into several parts without a setting start and end time.
1 : is it possible to set a value of MB for example slick every 40mb till it reaches end of movie file
2 : is it possible to cut movie in to several parts by 10minutes or custom value time.
please guys you people have alot of experience in this field i seek help please anybody thanks.
ffmpeg -i largefile.mp4 -t 00:50:00 -c copy smallfile1.mp4 -ss 00:50:00 -c copy smallfile2.mp4
tried this but i need better example a 1 line of command to slice entire movie into parts please