
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (61)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (10209)
-
C# - Capture RTP Stream and send to speech recognition
16 avril 2013, par dgreenheckWhat 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 :
- recognizer.SetInputToWaveStream()
- recognizer.SetInputToAudioStream()
- 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.
-
Record window from CMD or PowerShell [closed]
9 octobre 2023, par PinguiHow can one record a window e.g. from the Command Promt or PowerShell ?


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) :

"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



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


- 

- Ideally, the window should be found not by its window title, but by its process name (e.g. chrome.exe)
- The video should be automatically fitted to the window size (even if larger than 1920x1080)
- The video-name.mp4 and video duration (-t) should be handed dynamically as input variables
- If the video-name.mp4 already exists, it should be overwritten without asking
- The windw should be recorded even if not on top












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.


-
avcodec/vc1 : fix overlap and loop filtering for Simple and Main profile
8 juin 2018, par Jerome Borsboomavcodec/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>