
Recherche avancée
Autres articles (72)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...) -
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 ;
Sur d’autres sites (10292)
-
Redirect StandardOutput from a process
25 décembre 2015, par Prakash MI am working on C++/CLI winforms
how to redirect standard output to textbox ?
I followed this video, but it didn’t work
https://www.youtube.com/watch?v=BDTCviA-5M8I can see output in console window, but till process finishes GUI freezes !
ProcessStartInfo ^psi = gcnew ProcessStartInfo("D://ffmpeg.exe", "-y -i D://1.avi D://process.mp4");
psi->WindowStyle = ProcessWindowStyle::Hidden;
psi->UseShellExecute = false;
psi->RedirectStandardOutput = true;
process->StartInfo = psi;
process->Start();
String^ details = process->StandardOutput->ReadToEnd();
textBox1->Text = details;
Console::WriteLine(details);Where am I going wrong ?
-
Which command line and version do I need to reproduce those properties ?
26 décembre 2015, par ZurechtweiserI have a file for which ffmpeg gave those properties :
...
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'TEST.MOV':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
creation_time : 2015-12-26 07:45:26
Duration: 00:00:02.75, start: 0.000000, bitrate: 4935 kb/s
Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuvj420p(pc), 1280x720 [SAR 1:1 DAR 16:9], 4775 kb/s, 59.94 fps, 59.94 tbr, 180k tbn, 119.88 tbc (default)
Metadata:
creation_time : 2015-12-26 07:45:26
handler_name : Ambarella AVC
Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, mono, fltp, 64 kb/s (default)
Metadata:
creation_time : 2015-12-26 07:45:26
handler_name : Ambarella AACWhich command line and version do I need to reproduce those properties ?
I tried
ffmpeg -i "test.mp4" -s 1280x720 -vcodec libx264 -c:a libvo_aacenc -q:a 3 -r 59.94 -b:v 4935k -b:a 64k -ac 1 -ar 48000 TEST2.MOV
But it’s not the same.
Goal is simple : my actioncam has a hdmi-output. I want to watch movies next to my own footage using my actioncam when I am abroad. Goal is to make the actioncam think, it was it’s own footage to play it back. Currently I only get ’invalid’.
-
How to install youtube-to-gif in the Linux server ?
8 janvier 2016, par ChinuHi I am using Linux cloud server. I have successfully installed
ffmpeg
andnodeJS
by server support team. But I am unable to install youtube-to-gifMy nodeJS version is - 2.5.1
ffmpeg version is - 0.8.17-4:0.8.17-0ubuntu0.12.04.1I have tried to installed
youtube-to-gif
in following command$ sudo npm install youtube-to-gif -g
or
$ npm install youtube-to-gif -g
This two command not working. I saw
youtube-to-gif
installed in the node_modules directory but when i am typing$ youtube-to-gif -h
I got this error message-bash: youtube-to-gif: command not found
YouTube to GIF command
youtube-to-gif -u https://www.youtube.com/watch?v=NqxSgp385N0 -b 30 -d 5
SERVER
Local
Document - https://www.npmjs.com/package/youtube-to-gif
I am not sure this is perfectly installed or not. But
youtube-to-gif
command not working. Can you please help me.