Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (35)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4089)

  • Chore : switch to stale bot github action (#2425)

    13 avril 2022, par bytestream
    Chore : switch to stale bot github action (#2425)
  • ffmpeg command with action subprocess

    1er juillet 2018, par MathJunkiey

    I want to run this command in a python script

    cmd = 'ffmpeg -ss ' + start_time + ' -i remove_takeoff.mp4 -filter_complex "[0]trim=0,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a trimmed_takeoff.mp4'

    I’m using the following code snippet

    import subprocess
    import shlex

    cmd = # the command
    suprocess.call(shlex.split(cmd))

    I’m getting the following error

    Trailing options were found on the commandline.

    The above error occurring because the shlex.split command is converting the double quotes of the part into single quote. How to avoid this from happening. Can anyone suggest me a solutions for this problem.

    Check the full error trace below.

    ffmpeg version 3.4.2 Copyright (c) 2000-2018 the FFmpeg developers
     built with gcc 4.8.2 (GCC) 20140120 (Red Hat 4.8.2-15)
     configuration: --prefix=/home/vkv/anaconda3
     libavutil      55. 78.100 / 55. 78.100
     libavcodec     57.107.100 / 57.107.100
     libavformat    57. 83.100 / 57. 83.100
     libavdevice    57. 10.100 / 57. 10.100
     libavfilter     6.107.100 /  6.107.100
     libavresample   3.  7.  0 /  3.  7.  0
     libswscale      4.  8.100 /  4.  8.100
     libswresample   2.  9.100 /  2.  9.100
     libpostproc    54.  7.100 / 54.  7.100
    Trailing options were found on the commandline.
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'remove_takeoff.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf57.67.100
     Duration: 00:00:14.00, start: 0.000000, bitrate: 15883 kb/s
       Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 15881 kb/s, 20 fps, 20 tbr, 10240 tbn, 40 tbc (default)
       Metadata:
         handler_name    : VideoHandler
    Filter overlay has an unconnected output
  • How can I record the desktop action to a video file with ffmpeg without showing the ffmpeg console window ?

    24 décembre 2018, par Dubi Duboni

    Tried this method either by calling it from the constructor or a button click event :

    private void StartRecordingDesktop()
           {
               Process process = new Process();

               // Stop the process from opening a new window
               process.StartInfo.RedirectStandardOutput = true;
               process.StartInfo.UseShellExecute = false;
               process.StartInfo.CreateNoWindow = true;
               process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

               // Setup executable and parameters
               process.StartInfo.FileName = @"d:\SavedScreenshots\ffmpeg.exe";
               process.StartInfo.Arguments = "-f gdigrab -framerate 24 -i desktop -preset ultrafast -pix_fmt yuv420p testwithforms.mp4";

               // Go
               process.Start();
           }

    Two problems :

    1. It’s not recording when I shut down the application there is no video file on the hard disk.

    2. When I shut down the application sometimes it leaves a working exe file parto f the ffmpeg in the background that make the mouse cursor to shake a bit stuttering.

    What I want is to start/stop recording without showing the ffmpeg console window. The idea in the end is to make some identification of the recording mode if recording or not using a tray icon as indiacator.