
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (60)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (8654)
-
I can't start dream recording ? [closed]
5 mars 2024, par usny1986I'm looking for an app to record my dreams so i can watch them later. (I want it to record speech sounds too). The apps i've tried so far haven't worked properly.


When I start to see my dream, the applications usually give an error that ffmpeg is not installed. Yes, this error doesn't occur if I dream in the dark at night. But the problem is that i sleep during the day, so i dream during the day. Even though I installed the latest version of FFmpeg, I was not successful.


Is there a successful app to record daytime dreams ?


I tried the "HD Dream Captura" application. But it didn't work. It doesn't work during the day. It also gives a memory full error and is constantly interrupted. But I have enough free space in my brain to be able to see my dreams.


-
Console windows displayed during python script execution [closed]
15 janvier 2020, par vivitarei’m trying to create a Youtube converter with python and Tkinter.
The problem is during the conversion with ffmpeg encoder, a console appear. But I don’t want to display her.Windows console displayed during encoding with ffmpeg
Is there a parameter or something like that to disable this console ?
I’m using this code to launch dowlnoad and youtube-dl do the rest :
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'logger': MyLogger(),
'progress_hooks': [my_hook],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc']) -
FFmpeg streaming
24 mars 2023, par haysoI am using ffmpeg for streaming. But when i start watch it the stream always stuck for the first 30 40s after that is good.
I am trying to achieve fast and smooth starting


The command i use
ffmpeg -y -nostdin -hide_banner -err_detect ignore_err -loglevel warning -start_at_zero -copyts -vsync 0 -correct_ts_overflow 0 -avoid_negative_ts disabled -max_interleave_delta 0 -probesize 1000000 -analyzeduration 10000000 -progress 903dd5e68006.txt -i "http://example.com" -vcodec copy -acodec copy -sn -f hls -hls_segment_type mpegts -hls_init_time 2 -hls_time 10 -hls_allow_cache 1 -hls_start_number_source epoch -hls_ts_options "mpegts_flags=+initial_discontinuity:mpegts_copyts=1" -hls_delete_threshold 5 -hls_list_size 5 -hls_flags delete_segments+discont_start+omit_endlist -hls_segment_filename /storage/903dd5e6800


i tried to +- analyzeduration, probesize and hls timing, but without success.
The source that i used is stable.