
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (60)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (10246)
-
How to sent output of a console command-line tool to ram and read it ? [duplicate]
5 octobre 2015, par Mitra MThis question already has an answer here :
I can send output of the ffmpeg to a text file and read it by the code :
Process p=new Process ();
....
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.Arguments = " /C ffmpeg .exe -i \"" + FileName + "\" 2> " + System.IO.Path.GetTempPath() + "\\tmp.txt";
p.Start();
p.WaitForExit();
string fileInfo = File.ReadAllText(System.IO.Path.GetTempPath() + "\\tmp.txt");I want to send output of the ffmpeg to the memory (instead of the text file ) and get it as string , But I do not know how to do that.
Please help me
-
c# and ffpmeg command line trouble
26 février 2016, par mirzahatI have a php code that calls ffmpeg from the windows command line (because I run apache locally) with :
//ffmpeg -i input.mp4 -r 20 output.gif
echo exec('C:\ffmpeg\bin\ffmpeg.exe -i videos/file.avi -r 10 -s 450x230 videos/file.gif');And it works fine ! Now I wrote a C# program and I try to do the same thing with :
System.Diagnostics.Process.Start
but it fails.
Question : How do I execute the same command from the PHP code but from inside a C# code ?
-
Batch Encode video with command line using x264, neroAacEnc& mkvmerge [closed]
10 octobre 2015, par KeyI have 200+ videos in a folder, which i need to encode with a profile setting i have in MeGUI. I tried this profile setting using this command line and it works fine for only video.
"D:\Encoders\Megui\tools\x264\x264.exe" --preset veryslow --tune animation --crf 22.0 --deblock 2:1 --min-keyint 1 --bframes 8 --qpmin 10 --qpmax 51 --aq-mode 2 --nr 500 --non-deterministic --output "Output-01.mkv" "Input-01.mkv"
Well, it only encodes video and one file at a time.
Is there batch script to run in a folder for x264 to encode videos, neroAacEnc audios and mkvmerge join the files together. I have ffmpeg installed but i’m not sure if this profile setting will work with ffmpeg.
If it’s not possible with a single batch file. Then alternatively i’m thinking x264 to encode all videos in a new output folder. neroAacEnc to encode audios in that same output folder and then another command for mkvmerge to join videos and audios.