Recherche avancée

Médias (91)

Autres articles (28)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (6724)

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