
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (9547)
-
Video frames move fast for few second while resume live feeds FFmpeg
13 juin 2014, par Tarun SeeraI am using av_read_pause() for pause the feed and av_Read_play() for resume from current position.
When its resume video frames move fast for few seconds can anybody tell me how to control this. -
FFmpeg Live streaming, capture card avisynth/graphedit
19 décembre 2013, par diegonaranjoI´m stuck in a problem with a test doing multicast streaming from a Viewcast Osprey 700e HD using ffmpeg.
The thing is that I´ve to use avisynth(with graphedit) for ffmpeg recognize the card. The streaming has no ending time,
is a live channel for IPTV.
The script is working well, but the problem is the avisynth config, because I have to specify the countframe option,
i think this is for the duration of the clip, but I need an infinity streaming.The is script is :
ffmpeg -i espnhd.avs -rtbufsize 100000k -r 30 -c:v mpeg2video -b:v 5120k -s 1280x720 -g 100 -q:v 2 -c:a ac3 -b:a 256k -f mpegts udp ://239.192.42.61:1234
The espnhd.avs file is :
v=directshowsource("espnhdv.GRF", pixel_type="YUV", framecount=1000000, fps=30, audio=False, convertfps=false)
A=directshowsource("espnhda.GRF", fps=30, framecount=1000000, video=False, convertfps=false)
AudioDub(V, A)
loop()When i run the application, work fine but the streaming ends when 1000000 frames it´s encoded...
If i dont specify framecount, ffmpeg doesn´t start with the following error, can´t determine the duration of the clip.Is there any way to specify an inifinity duration on avisynth ?
The streaming stops at 1:57hs. I took the end fo the logs :
frame=212014 fps= 30 q=4.0 size= 6957018kB time=01:57:54.13 bitrate=8056.4kbits/s dup=0 drop=211
frame=212029 fps= 30 q=4.0 size= 6958383kB time=01:57:54.64 bitrate=8057.4kbits/s dup=0 drop=211
frame=212044 fps= 30 q=4.0 size= 6959504kB time=01:57:55.13 bitrate=8058.1kbits/s dup=0 drop=211
frame=212060 fps= 30 q=4.0 size= 6960692kB time=01:57:55.66 bitrate=8058.9kbits/s dup=0 drop=211
espnhd.avs: Not enough space
[output stream 0:0 @ 02f02220] EOF on sink link output stream 0:0:default.
[output stream 0:1 @ 02f10c20] EOF on sink link output stream 0:1:default.
No more output streams to write to, finishing.
frame=212069 fps= 30 q=4.0 Lsize= 6961519kB time=01:57:56.00 bitrate=8059.5kbits/s dup=0 drop=211
video:6196482kB audio:221125kB subtitle:0 global headers:0kB muxing overhead 8.475312%
424560 frames successfully decoded, 0 decoding errors
[AVIOContext @ 02f8c3e0] Statistics: 0 seeks, 4977161 writeouts
[AVIOContext @ 02f032a0] Statistics: 229 bytes read, 0 seeksI really appreciate some help.
Thanks. -
PCM getting shorter duration after resample [on hold]
12 juin 2014, par lvqierI have PCM file can be played with ffplay :
ffplay -f s16le -ar 44100 -ac 1 pcm
The file size is 88200 and duration is 1 second. I resampled it using ffmpeg :
ffmpeg -f s16le -ac 1 -ar 44100 -i pcm -f s16le -ac 1 -ar 8000 pcm_8k
But the size of result file pcm_8k is 15982 and duration is not exactly 1 second.
What can I do to make the result file size to 16000 ?