
Recherche avancée
Autres articles (47)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7926)
-
Révision 17459 : pipeline pre_edition_lien et post_edition_lien sur toutes les actions insertion/...
21 mars 2011, par cedric -Le pipeline est appele sur chaque lien y compris en cas d’ajout ou suppression massive. Le resultat du pipeline est a chaque fois l’id de l’objet lie, il suffit de renvoyer ’’ pour annuler l’operation.
-
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
-
ffmpeg to validate video formet is genune and store error into string
8 juin 2015, 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
http://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