Recherche avancée

Médias (91)

Autres articles (38)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

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

Sur d’autres sites (5760)

  • avcodec/vc1 : fix overlap and loop filtering for Simple and Main profile

    8 juin 2018, par Jerome Borsboom
    avcodec/vc1 : fix overlap and loop filtering for Simple and Main profile
    

    Overlap filtering I and BI frames for Simple and Main profile is only
    dependent on PQUANT. Restrict testing for CONDOVER and OVERFLAGS to
    advanced profile. Change from mb_width to end_mb_x in ff_vc1_i_loop_filter
    to avoid breaking the Microsoft Screen 2 decoder.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_loopfilter.c
  • Record window from CMD or PowerShell [closed]

    9 octobre 2023, par Pingui

    How can one record a window e.g. from the Command Promt or PowerShell ?

    &#xA;

    I tried the following CMD-command which in principle works, but it cuts off the window (even with increased video_size 1920x1080, which seems to have no effect at all) :

    &#xA;

    "C:\[your_path_to]\ffmpeg.exe" -f gdigrab -i title="New Tab - Google Chrome" -framerate 30 -video_size 1920x1080 -c:v libx264 -preset ultrafast -t 5 output.mp4&#xA;

    &#xA;

    The goal would be something like the above, but...

    &#xA;

      &#xA;
    1. Ideally, the window should be found not by its window title, but by its process name (e.g. chrome.exe)
    2. &#xA;

    3. The video should be automatically fitted to the window size (even if larger than 1920x1080)
    4. &#xA;

    5. The video-name.mp4 and video duration (-t) should be handed dynamically as input variables
    6. &#xA;

    7. If the video-name.mp4 already exists, it should be overwritten without asking
    8. &#xA;

    9. The windw should be recorded even if not on top
    10. &#xA;

    &#xA;

    Any solution in CMD, PowerShell or whatever can be called by Window's ShellExecuteW function and passed video-name.mp4 and video duration as inputs would be fine.

    &#xA;

  • C# - Capture RTP Stream and send to speech recognition

    16 avril 2013, par dgreenheck

    What I am trying to accomplish :

    • Capture RTP Stream in C#
    • Forward that stream to the System.Speech.SpeechRecognitionEngine

    I am creating a Linux-based robot which will take microphone input, send it Windows machine which will process the audio using Microsoft Speech Recognition and send the response back to the robot. The robot might be hundreds of miles from the server, so I would like to do this over the Internet.

    What I have done so far :

    • Have the robot generate an RTP stream encoded in MP3 format (other formats available) using FFmpeg (the robot is running on a Raspberry Pi running Arch Linux)
    • Captured stream on the client computer using VLC ActiveX control
    • Found that the SpeechRecognitionEngine has the available methods :
      1. recognizer.SetInputToWaveStream()
      2. recognizer.SetInputToAudioStream()
      3. recognizer.SetInputToDefaultAudioDevice()
    • Looked at using JACK to send the output of the app to line-in, but was completely confused by it.

    What I need help with :

    I'm stuck on how to actually send the stream from VLC to the SpeechRecognitionEngine. VLC doesn't expose the stream at all. Is there a way I can just capture a stream and pass that stream object to the SpeechRecognitionEngine ? Or is RTP not the solution here ?

    Thanks in advance for your help.