
Recherche avancée
Autres articles (63)
-
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 (9281)
-
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.
-
ffmpeg command line not working
5 mars 2016, par Cameron SwyftI’m still roughly new to ffmpeg and don’t really understand how its command line works. I have limited knowledge on Encoders and etc so was wondering if you could answer to why this isn’t working
exec("ffmpeg -i $video->fullPathTemp -f mp4 -codec:v libx264 -preset medium -crf 20 -codec:a copy $video->fullPath 1> block.txt 2>&1");
This was my old one that worked, if it helps any
exec("ffmpeg -i $video->fullPathTemp -f mp4 -b 6000k -strict -2 $video->fullPath 2>&1");
Much help appreciated !