Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

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

Sur d’autres sites (10257)

  • avcodec/version : update the codec_ids

    29 août, par Nicolas Gaullier
    avcodec/version : update the codec_ids
    

    The counters should be incremented for each new codec.
    Catch-up to be in sync with codec_id.h again.

    Signed-off-by : Nicolas Gaullier <nicolas.gaullier@cji.paris>

    • [DH] libavcodec/version.c
  • How can I use ffmpeg with youtube-dl ?

    18 octobre 2018, par Dani

    I have this "setup", but it stopped working (I did not change anything in the code) :

     private Process StartFfmpeg(string URL)
       {
           string args = $"/C youtube-dl --ignore-errors -o - {URL} | ffmpeg -err_detect ignore_err -i pipe:0 -ac 2 -f s16le -ar 48000 pipe:1";
           return Process.Start(new ProcessStartInfo
           {
               FileName = "cmd.exe",
               Arguments = args,
               UseShellExecute = false,
               RedirectStandardOutput = true,
               RedirectStandardError = false,
               CreateNoWindow = true,
           });
       }

    (I get the stream by using
    Stream stream = StartFfmpeg(URL).StandardOutput.BaseStream;)
    It just freezes. It doesn’t throw any error (in a try/catch block) and I have the latest version of ffmpeg & youtube-dl. I’ve tried using older versions with no success.
    How can I get it working again ? (This is my first post, sorry if its very bad)

  • FFMPEG Create internal pipeline for adding raw frames to AVI file (no input file)

    2 avril 2015, par Katie

    I have an application that reads in a raw video file, does some image processing to each frame, then feeds the resulting BGRA-format byte[] frames to the FFMPEG container to eventually create an AVI file. Since this process works slightly differently than any other FFMPEG example I’ve seen in that it does not have an existing input file, I’m wondering if anyone knows how to do this.

    I initialize the FFMPEG container :

    ProcessBuilder pBuilder = new ProcessBuilder(raid.getLocation()
                   + "\\ffmpeg\\bin\\ffmpeg.exe", "-r", "30", "-vcodec",
                   "rawvideo", "-f", "rawvideo", "-pix_fmt", "bgra", "-s",
                   size, "-i", "pipe:0", "-r", "30", "-y", "-c:v", "libx264",
                   "C:\export\2015-02-03\1500\EXPORT6.avi");

    try
    {
        process = pBuilder.start();
    }
    catch (IOException e)
    {
        e.printStackTrace();
    }

     ffmpegInput = process.getOutputStream();

    For each incoming byte[] array frame, I add the frame to the container ("src" is a BufferedImage that I’m converting to a byte array) :

    try
    {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        ImageIO.write(src, ".png", baos);
        ffmpegInput.write(baos.toByteArray());
    }
    catch (IOException e)
    {
        e.printStackTrace();
    }

    And once the video is finished loading frames, I close the container :

    try
    {
        ffmpegInput.flush();
        ffmpegInput.close();
    }
    catch (IOException e)
    {
        e.printStackTrace();
    }

    The AVI file is created but it displays an error when opening. The FFMPEG logger displays this as the error :

    ffmpeg version N-71102-g1f5d1ee Copyright (c) 2000-2015 the FFmpeg developers built with gcc 4.9.2 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
     libavutil      54. 20.101 / 54. 20.101
     libavcodec     56. 30.100 / 56. 30.100
     libavformat    56. 26.101 / 56. 26.101
     libavdevice    56.  4.100 / 56.  4.100
     libavfilter     5. 13.101 /  5. 13.101
     libswscale      3.  1.101 /  3.  1.101
     libswresample   1.  1.100 /  1.  1.100
     libpostproc    53.  3.100 / 53.  3.100
    Input #0, rawvideo, from 'pipe:0':
     Duration: N/A, bitrate: 294912 kb/s
       Stream #0:0: Video: rawvideo (BGRA / 0x41524742), bgra, 640x480, 294912 kb/s, 30 tbr, 30 tbn, 30 tbc
    No pixel format specified, yuv444p for H.264 encoding chosen.
    Use -pix_fmt yuv420p for compatibility with outdated media players.
    [libx264 @ 00000000003bcbe0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2
    [libx264 @ 00000000003bcbe0] profile High 4:4:4 Predictive, level 3.0, 4:4:4 8-bit
    Output #0, avi, to 'C:\export\2015-02-03\1500\EXPORT6.avi':
     Metadata:
       ISFT            : Lavf56.26.101
       Stream #0:0: Video: h264 (libx264) (H264 / 0x34363248), yuv444p, 640x480, q=-1--1, 30 fps, 30 tbn, 30 tbc
       Metadata:
         encoder         : Lavc56.30.100 libx264
    Stream mapping:
     Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264))
    frame=    0 fps=0.0 q=0.0 Lsize=       6kB time=00:00:00.00 bitrate=N/A    
    video:0kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
    Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)

    Any insight or ideas would be greatly appreciated !