
Recherche avancée
Autres articles (85)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (16239)
-
FFmpeg play audio stream on a browser
9 mars 2017, par tiras muturiHey 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.
-
play a .sdp file describing a UDP/RTP H264 stream iOS 8+
26 avril 2017, par AlexI´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 ?
-
How to play a specific number of samples from an audio file using ffmpeg ?
2 juillet 2023, par FrostDreamI'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 !