Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (67)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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 ;

Sur d’autres sites (10859)

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

  • 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’.

  • 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.