Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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

Autres articles (98)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8270)

  • How to stop ffmpeg video recording in c# ?

    23 octobre 2016, par 최영재

    I am using FFmpeg in application and it start and record video perfectly
    but when I want to stop it ask for press "q", I got a System.EntryPointNotFoundException Error message.

    How can I send message "q" to process which is in running state from application

       int key_q = 81;

       [DllImport("user32.dll", EntryPoint = "postmessage")]      
       private static extern bool postmessage(IntPtr hwnd, uint msg, int wparam, int lparam);



       private void button_stop_Click(object sender, EventArgs e)
       {
             string process = "ffmpeg";

             Process[] pro = Process.GetProcessesByName("ffmpeg");

             pro[0].Refresh();

             IntPtr h = pro[0].MainWindowHandle;



             postmessage(h, 0x100, key_q, 0);


       }
  • How to stop ffmpeg and continue batch running

    7 novembre 2015, par Wayne

    I have this small batch script. The purpose is to save small portion of our rtmp live stream

    @echo off
    echo Live Stream Cropper v0.1
    echo **************************
    echo video codec : libxh264
    echo audio codec : mp3
    echo **************************
    echo Recording...
    echo.

    for /f "tokens=2 delims==" %%I in ('wmic os get localdatetime /format:list') do set datetime=%%I

    set output=%datetime:~0,8%-%datetime:~8,4%

    ffmpeg -i rtmp://my.streaming.path/public/appname -acodec mp3 -vcodec libx264  "X:\PATH\%output%.avi" -nostats -loglevel 0

    echo.
    echo "Recorded video is saved on X:\PATH\%output%.avi"
    pause

    The ffmpeg process is working as expected. My problem is after pressing CTRL + C to stop the process of ffmpeg, the echo command to show where the recorded file is saved is not executed.

    How can I stop the ffmpeg process and then continue running the remaining of the script ?

    Thanks

  • Why does FFMPEG always make large WebM files ?

    2 avril 2013, par Student of Hogwarts

    I'm trying to encode my movies into WebM :

    ffmpeg -i input.MOV -codec:v libvpx -quality good -cpu-used 0 -b:v 10k
    -qmin 10 -qmax 42 -maxrate 10k -bufsize 20k -threads 8 -vf scale=-1:1080
    -codec:a libvorbis -b:a 192k
    output.webm

    I want to encode at a couple of different bit rates (video and audio combined) :

    • 2192 kbps
    • 1692 kbps
    • 1000 kbps

    The problem is that no matter which bit rates I enter, I always get a file with a bit rate higher than 1900 kbps. (1914 kbps with the code example above.)

    What am I doing wrong ?