Recherche avancée

Médias (91)

Autres articles (68)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6979)

  • How to add text to video by time use ffmpeg

    15 mars 2017, par Thanh Dao

    I create my slideshow with command :

    "ffmpeg" -f concat -safe 0 -i /path/to/text.txt -i /path/to/audio.mp3 -vsync vfr -pix_fmt yuv420p /path/to/output.mp4

    The contents of text.txt

    file '/path/to/img1.jpg'
    duration 6
    file '/path/to/img2.jpg'
    duration 6
    file '/path/to/img3.jpg'
    duration 6
    file '/path/to/img4.jpg'
    duration 6
    file '/path/to/img5.jpg'
    duration 6
    file '/path/to/img6.jpg'
    duration 6

    The video has been cretaed perfectly. Now I want to add titles for each images displayed. Example :

    • img1.jpg displayed, show title Title 1
    • img2.jpg displayed, show title Title 2
    • img3.jpg displayed, show title Title 3

    I search a lot but got any solutions. Anyone help me. I’m stuck

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

    2 septembre 2017, 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.

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