
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (58)
-
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. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (9160)
-
ffmpeg to validate video format is genune and store error into string
7 janvier 2019, par hari krishnaSince there are hackers uploading malicious software’s in name of video extensions(.mp4,webm..etc) in websites. I tried to validate videos uploaded from file upload in asp.net.This website helped me to find a way to do this operation using ffmpeg
https://superuser.com/questions/100288/how-can-i-check-the-integrity-of-a-video-file-avi-mpeg-mp4
I tried to do this operation in asp.net and failed due to errors since my first time using ffmpeg.below is my code.I tried to save malicious software creates error in to a string.Process ffmpeg;
string video;
string thumb="";
video = Page.MapPath("") + "\\input\\error.mp4";
ffmpeg = new Process();
ffmpeg.StartInfo.Arguments = "-v error -i \"" + video + "\"-f null - 2> \"" + thumb + "\"";
ffmpeg.StartInfo.FileName = Page.MapPath("ffmpeg//ffmpeg.exe");
ffmpeg.Start(); // start !
ffmpeg.StartInfo.CreateNoWindow = true;
ffmpeg.WaitForExit();
Label1.Text = thumb;please also let me know if there is any other option other than ffmpeg
-
lavf/dashenc : set FLAC manifest codec string to "flac"
14 novembre 2018, par Jan Ekströmlavf/dashenc : set FLAC manifest codec string to "flac"
Internally in ISOBMFF the FLAC-in-ISOBMFF draft uses "fLaC"
as the identifier for FLACSampleEntry, and there seems to be no
MPEG-DASH specification for the in-manifest identifier for FLAC.After testing the browsers' implementations, it seems like all of
the major browser vendors have decided to utilize the MIME type for
FLAC ("audio/flac") as the identifier. This change set leads to
that string being utilized for FLAC streams instead of the sample
entry identifier ("fLaC"), which is the default behavior.Verified by auri_ on IRC to play with the major browsers.
-
How to make command string for ffmpeg in c# correctly ?
9 octobre 2018, par Rolens CentottantaquattroI wrote this code for make a video from still image and audio with ffmpeg in c#.
I wrote the argument string and inserted the variable parameters between braces.
Trying to start the program nothing happens. Something wrong with the string or something ?string image = folderInput.SelectedPath + "/" + name+ ".jpg";
bmp.Save(immagine);
string audioMixing = folderInput.SelectedPath + "/" + name + ".wav";
string videoOutput = folderOutput.SelectedPath + "/" + name + ".mp4";
const string templateArgumentsVideo = " -loop l -i {0} -i {1} -c:v libx264 -tune stillimage c:a aac -b:a 192k -pix_fmt yuv420p -shortest {2} -y";
var argumentsVideo = string.Format(templateArgumentsVideo,image,audioMixing,videoOutput);
Process makeVideo = new Process();
makeVideo.StartInfo.UseShellExecute = false;
makeVideo.StartInfo.RedirectStandardOutput = true;
makeVideo.StartInfo.CreateNoWindow = true;
makeVideo.StartInfo.FileName = (Convert.ToString(Environment.CurrentDirectory)) + "\\ffmpeg.exe";
makeVideo = Process.Start(makeVideo.StartInfo.FileName, argumentsVideo);
makeVideo.WaitForExit();