Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (75)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Une 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 Chinu

    Hi I am using Linux cloud server. I have successfully installed ffmpeg and nodeJS by server support team. But I am unable to install youtube-to-gif

    My nodeJS version is - 2.5.1
    ffmpeg version is - 0.8.17-4:0.8.17-0ubuntu0.12.04.1

    I 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

    enter image description here

    YouTube to GIF command

    youtube-to-gif -u https://www.youtube.com/watch?v=NqxSgp385N0 -b 30 -d 5

    SERVER

    enter image description here

    Local

    enter image description here

    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 Zurechtweiser

    I 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 AAC

    Which 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 M

    I 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-5M8

    I 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 ?