Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (9696)

  • How to play a specific number of samples from an audio file using ffmpeg ?

    2 juillet 2023, par FrostDream

    I'm trying to use ffmpeg in a command-line or terminal environment to play only a specific number of samples from an audio file. Instead of playing the entire audio, I want to extract and play a precise portion based on the sample count.

    


    I came across the following example command that seems to be relevant :

    


    ffmpeg -ss 0 -t [SAMPLE_COUNT] -i [INPUT_AUDIO_FILE] -f wav - | ffplay -


    


    In the command, I understand that -ss is used to specify the start time as 0, -t sets the duration as the sample count, -i defines the input audio file, and -f sets the output format as WAV. The output is then piped to ffplay, a simple media player provided with ffmpeg, which will play the specified number of samples from the audio file.

    


    However, I'm not entirely sure about the usage and options of ffmpeg in this scenario. Could someone please provide a detailed explanation of how to correctly use ffmpeg to achieve this ? Any additional insights, tips, or alternative approaches would also be greatly appreciated. Thank you !

    


  • play a .sdp file describing a UDP/RTP H264 stream iOS 8+

    26 avril 2017, par Alex

    I´m looking into how to implement a simple app that can play a .sdp file (like VLC can do) in order to open a RTP stream made by GStreamer :

    gst-launch-1.0 rpicamsrc bitrate=10000000 ! video/x-h264,width=1280,height=720,framerate=30/1  ! h264parse config-interval=1 ! rtph264pay ! udpsink host=192.168.100.123 port=1234

    What would be the easiest way to do this in Swift/Objecvtive-C ? Are there any built in functions or libraries I should know of ?

  • FFmpeg play audio stream on a browser

    9 mars 2017, par tiras muturi

    Hey guys i have a live stream that is served by the ffserver but i want the stream to be playable on a browser since i have a website and i also want to play the stream in an android app. Most importantly the android device.

    i want if i type this on a browser then i can be able to listen to the stream there and then.

    http://localhost:8090/test1.mp3

    if i put the link in vlc am able to receive the stream.

    Anyone with this workaround please assist me.