
Recherche avancée
Autres articles (75)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (8972)
-
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. -
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’.
-
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 ?