Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (48)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number 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
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les images

    15 mai 2013

Sur d’autres sites (5764)

  • Record and play at same time using FFMPEG (from usb)

    9 février 2018, par Eduardo Preto

    I’m trying to record and play at the same time from a Video Capture Device (USB3HDCAP). Currently my script is this :

    ffmpeg  -f dshow -i video="CY3014 USB, Analog 01 Capture" mark1.mp4 -preset ultrafast -vcodec libx264 -tune zerolatency -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000

    Basically I’m streaming the video using UDP to my computer using VLC (to play). However, the video quality (from file) is perfect, but the stream is delayed a several seconds and quality is not so good has I pretend.

    Anyone has some sugestion of how can I improve my implementation ?

  • Don't record in realtime with FFmpeg

    2 février 2018, par widgg

    So for my little application, I’m producing images and pipe them into FFmpeg.

    But my application is not running real time. So producing a frame could take more than the actual FPS, but I want FFmpeg to count it only as a frame.

    So if it takes for example 20 seconds to produce a single second of animation, I don’t want to look like 20 seconds in the recorded video, but actually one second.

    Is there a parameter for that ? I couldn’t find anything.

    My current command line is :

    ffmpeg -s 1920x1080 -an -r 30 -pix_fmt rgb24 -f rawvideo -i pipe:0 test.mp4
  • How to record UDP stream with FFMPEG in chunks ?

    30 janvier 2018, par user1394281

    I’m looking for a way to record a video UDP stream using ffmpeg but in 10mn chunks.
    I currently use the following to get 10mn of video (with h264 transcoding).

    "ffmpeg -i udp ://239.0.77.15:5000 -map 0:0 -map 0:1 -s 640x360 -vcodec libx264 -g 100 -vb 500000 -r 25 -strict experimental -vf yadif -acodec aac -ab 96000 -ac 2 -t 600 -y /media/test.m4 "

    My problem is that using command line ffmpeg needs time to resync with the udp stream loosing 2 seconds of video each time. Is it normal ?

    Any idea if there is a way to do it in command line or should I tried to use the ffmpeg API ?

    Thanks in advance