Recherche avancée

Médias (91)

Autres articles (32)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4529)

  • Stop ffmpeg rtmp live stream without cutting off video

    30 juillet 2018, par Geige V

    I can stream fine using the command

    ffmpeg -f alsa -ac 2 -i hw:0,0 -f x11grab -framerate 30 -video_size 1280x720 \
    -i :0.0+0,0 -c:v libx264 -preset veryfast -maxrate 1984k -bufsize 3968k \
    -vf "format=yuv420p" -g 60 -c:a aac -b:a 128k -ar 44100 \
    -f flv rtmp://live.twitch.tv/app/<stream key="key"></stream>

    Platforms generally have a delay of 10 seconds for viewers. When I terminate the ffmpeg command, the stream ends immediately for the viewers and they miss the last 10 seconds of video.

    How can I terminate the stream without the end of the video cutting off abruptly ?

  • recording live video stream from tv card using ffmpeg in windows

    23 septembre 2015, par user2688423

    I want to capture thumbnail every 1 second from tv card(tv signal) using ffmpeg in windows.

    first of all, to record live video from tv card, I tried below.

    ffmpeg -f dshow -i video="SKYTV HD USB Maxx Video Capture" -r 20 -threads 0 D ://test.mkv

    But it didn’t work.
    the Error message is

    "[dshow@000000000034d920] Could not run filter
    video=SKYTV HD USB Maxx Video Capture : Input/output error"

    I use the device called ’SKYTV HD USB Maxx Video Capture’ for getting tv signal(TV card).

    (people usually suggest "ffmpeg -f oss -i dev/dsp -f video4linux2 -i dev/video0/tmp/out.mpg"
    but I dont think it works at window. this is the error message i got : "Unknown input format: 'video4linux2'")

    what should i do to record live video and get thumbnail every 1 second from tv card(tv signal) using ffmpeg in window ?

    Please help..!

  • Recording live stream with intermittent no audio with FFmpeg

    15 décembre 2022, par charlie-bird

    I'm trying to record a live stream with ffmpeg and having an issue with the audio.&#xA;The stream has video and audio, until it goes to video only for a few minutes and back to audio+video.
    &#xA;A : XXXXXX________YYYYYY_______ZZZZZZ
    &#xA;V : XXXXXXOOOOO0YYYYYYOOOOOZZZZZZ

    &#xA;

    When I stop the recording and look at the output file, the absence of audio is messing stuff up. Instead of having no audio during the "breaks" ffmpeg wrote the audio track from after the break over the video, completely disconnecting audio and video
    &#xA;A : XXXXXXYYYYYYYZZZZZZZZZ
    &#xA;V : XXXXXXOOOOOOOOYYYYYYOOOOOOOZZZZZZ

    &#xA;

    Is there an argument or parameter to force the recording of an "empty" audio track over the video when there's no audio, to keep both in sync ?

    &#xA;

    Right now, not using any options

    &#xA;

    ffmpeg -i "https://input.m3u8" ~/Outputfile.mp4&#xA;

    &#xA;

    Tried with map as below, same issue

    &#xA;

    ffmpeg -i "https://input.m3u8" -map 0:a -map 0:v ~/Outputfile.mp4&#xA;

    &#xA;

    EDIT :&#xA;Also tried with a simple copy, in that case the audio stops but then isn't recorded when it comes back

    &#xA;

    ffmpeg -i "https://input.m3u8" -map 0:a -map 0:v -c copy ~/Outputfile.ts&#xA;

    &#xA;

    EDIT 2 :&#xA;I've found a workaround. I re-stream the live stream using VLC on a local port and record copy with ffmpeg, and now it's all in sync

    &#xA;

    ffmpeg -i "http://10.10.10.10:1234" -c copy ~/Outputfile.ts&#xA;

    &#xA;

    I would still like to be able to do this directly, but in the meantime that works.

    &#xA;