Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (33)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6057)

  • How can we feed bytearray of an image in input of ffmpeg for doing direct operation for live streaming to RTMP server

    31 janvier 2017, par Raj Kumar Singh

    What I am doing now is :

    I have a stream from a source, that give me byte array for each frame. I have to save that byte array to JPEG file. Each of the frames are being saved in memory. Then I’am streaming those JPEG to server using the FFMPEG command.

    What I want to do is :

    I want to skip the step of storing each frame as JPEG. I want to directly stream the byte array to RTMP server.

    The FFMPEG command I am using is :-

    ffmpeg -framerate 10 -i c:\Stream\img%03d.jpg -f flv rtmp://192.168.243.195/live/ac71e
  • C# Using NReco FFMpegConverter to take live video screenshots

    21 novembre 2014, par Lance Bloom

    I have an an application running as an Azure Web Role where I want to take screenshots of live RTSP video streams on a Wowza server. I am using the NReco FFMpegConverter wrapper. I am having issues with consistency. Sometimes the code doesn’t execute at all, sometimes it executes right away, sometimes it take 2-3 minutes for the screenshot to be created. I’ve tested this on static (not live) mp4 videos and everything is executed flawlessly (within 1-2 seconds).

    Stream thumb1 = new System.IO.MemoryStream();

    var ffMpeg = new NReco.VideoConverter.FFMpegConverter();                
    ffMpeg.GetVideoThumbnail("rtsp://99.99.99.99:1935/streamurl", thumb1);

    //Code to upload file to blob storage
    blob = testContainer.GetBlockBlobReference("test.jpg");

    thumb1.Seek(0, SeekOrigin.Begin);
    blob.Properties.ContentType = "image/jpg";
    blob.UploadFromStream(s);

    The error I get during failed execution is "Output file #0 does not contain any stream". I am really curious why it takes 2-3 minutes to get an output screenshot sometimes, while other times only a few seconds. Looking for any advice on how to improve this approach and still use the C# NReco wrapper.

    Thanks !

  • When i try to convert live http streams to .flv file i am getting Unrecognized option 'c:v' error

    12 novembre 2014, par user3932031

    C :\Program Files\ffmpeg>ffmpeg -re -i http://82.135.224.134/udp/239.100.2.20:1234 -c:v libx264 -b:v 5M -pix_fmt yuv420p -c:a:0 libfdk_aac -b:a:0 480k -f flv abc.flv

    I am running above command. I am getting folloing error:

    [h264 @ 0154f300]sps_id out of range
    [h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
    [h264 @ 0154f300]non-existing PPS referenced
    [h264 @ 0154f300]sps_id out of range
    [h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
    [h264 @ 0154f300]non-existing PPS 0 referenced
    [h264 @ 0154f300]decode_slice_header error
    [h264 @ 0154f300]no frame!
    .
    .
    .
    .
    .
    [mpegts @ 023c1700]max_analyze_duration reached
    [mpegts @ 023c1700]Estimating duration from bitrate, this may be inaccurate
    Input #0, mpegts, from 'http://82.135.224.134/udp/239.100.2.20:1234':
     Duration: N/A, start: 63180.879433, bitrate: 62 kb/s
     Program 1
       Stream #0.0[0x3e9]: Video: h264, yuv420p, 720x576 [PAR 1:1 DAR 5:4], 38.11 f
    ps, 25 tbr, 90k tbn, 50 tbc
       Stream #0.1[0x3ea]: Audio: aac, 22050 Hz, stereo, s16, 62 kb/s
    Unrecognized option 'c:v'

    How can i solve this error ? Please help me.