
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (72)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (...)
Sur d’autres sites (12542)
-
Windows server crashs in video transcode during
6 février 2019, par parsaI’m using ffmpeg for transcoding of my videos on a HP Blade dedicated server with these details :
OS : Windows Server 2012 R2 64Bit
CPU : Intel XEON X5650
RAM : 16GB
Hard disk : A sas normal diskThis command is a sample for creating qualities which has 4K as top level and
I use this command for creating lower qualities from that as parallel at the same time.ffmpeg -i input.mp4 -filter_complex
[0:v]split=4[s0][s1][s2][s3];
[s0]scale=uhd2160[v0];
[s1]scale=hd1080[v1];
[s2]scale=hd720[v2];
[s3]scale=hd480[v3];
[s4]scale=nhd[v4];
[s5]scale=cga[v5]
-map [v0] -map [v1] -map [v2] -map [v3] -map [v4] -map [v5] -map 0:a
-c:v libx264 -c:a aac -f tee -g 48 -threads 0
"[select='v\:0,a':f=hls:hls_list_size=0:hls_time=6]../video/2160p/out.m3u8|
[select='v\:1,a':f=hls:hls_list_size=0:hls_time=6]../video/1080p/out.m3u8|
[select='v\:2,a':f=hls:hls_list_size=0:hls_time=6]../video/720p/out.m3u8|
[select='v\:3,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
[select='v\:3,a':f=hls:hls_list_size=0:hls_time=6]video/360p/out.m3u8|
[select='v\:3,a':f=hls:hls_list_size=0:hls_time=6]video/200p/out.m3u8"Some times in transcoding time windows goes to reconnecting and count up to 20 and then goes to black screen.
I cannot find anythings in windows logs.
And finally I restart server from button of that server.
What’s hapenning ?
How can I find a clue, about this issue ?
Any one know anything about this issue ? -
Q&A : An interview with Matomo founder, Matthieu Aubry
-
How to Add Spacing Between Bars in showfreqs Visualization in FFmpeg
21 janvier, par Jad AlaouieI'm trying to create a video visualization using FFmpeg that shows an audio waveform with bars representing frequency data using the showfreqs filter. However, I would like to add some space between the bars in the bar chart-style visualization, but the showfreqs filter doesn't seem to provide a built-in option for controlling the spacing.


filter_complex = (
 # Create bar chart style visualization with reduced overlap for spacing
 "[0:a]aformat=channel_layouts=mono," +
 "showfreqs=mode=bar:ascale=log:fscale=log:win_size=900:size=1920x300:" + # Adjust win_size for overall effect
 "colors=white:win_func=blackman:overlap=0.05[vis];" + # Reduce overlap
 # Insert space by scaling and resizing the visualization
 "[1][vis]overlay=(W-w)/2:(H-h)/2-150:format=auto[bg_with_wave];" +
 # Add play button
 "[2]scale={0}:{1}[play_button];" +
 # Combine everything, with added space between bars by manipulating output size
 "[bg_with_wave][play_button]overlay=(W-w)/2:(H-h)/2:format=auto[v];" +
 "[v]scale=1.2*iw:1.2*ih[v_rescaled]" # Increase space by scaling video output
 ).format(play_button_width, play_button_height)