
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (83)
-
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (9819)
-
Recommendation : Video format process NodeJS
13 août 2022, par Austin HowardI am looking for the best recommendation for formatting videos ona nodejs server. In all my research i keep getting pointed back to
ffmpeg
but it doesnt look very friendly to a Nodejs app, i've seenfluent-ffmpeg
andnode-ffmpeg
and a couple others, but at this point they are a couple years old, and if im going to use a node package id like for them to be udpated a bit more. Do you guys have any recommendations for current software that will be decent for converting and compressing videos for upload ? I have a use case where i sometimes have 2-3gb files that i want to get down to somewhere around 500-1gb in size. As well as generating thumbnails from that video, or if you guys have good documentation to point me to that would allow me to use the ffmpeg executable alone i can make that work too.

-
Random Weird HLS generation with ffmpeg
16 août 2022, par user15006279I am doing some live streaming setup for my personal project and I noticed that sometime ffmpeg will not generate any hls auto it was running. I copied the same command and run in shell and it was generating HLS files successfully but somehow it was not generating with nginx.


Enter image description here




The more weird thing is that if i restart nginx for like a couple of times, it will regenerate. I am only playing youtube video from browser somehow ffmpeg process is not generating hls. Even after a couple of restarts, it will generate sometimes but its random. Mostly not generating at all. Can you guys help me with it ?


image




-
ffmpeg : remove frames when audio mute
23 septembre 2022, par dvtI have a video record of a public academic conference. For some reason, the audio is complete but intermittent(spectrogram sample). For each 5 10 secs, short mute interrupts, make me hard to focus on the content.
Thinking most of the video is static image, removing mute portion of the audio and corresponding frames might be a way to fix this.


For now I've partially done using silenceremove and rubberband, stripping mute interruptions and stretch the audio to the same duration of the video. Steps below :


- 

-
Get the video duration with ffprobe

ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 sample.mp4


-
Try silenceremove the audio once and Get its duration.


ffmpeg -i "sample.mp4" -filter_complex "[a]silenceremove=stop_periods=-1:start_threshold=-50dB:stop_threshold=-50dB:detection=rms:window=0.01[a1]" -vn sample.wav
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 sample.mp4



-
Calculate the tempo manually (duration-audio/duration-video), for example I got
0.948
.

-
AIO command, rubberband added. Generate a fixed version from the source.


ffmpeg -i "sample.mp4" -filter_complex "[a]silenceremove=stop_periods=-1:start_threshold=-50dB:stop_threshold=-50dB:detection=rms:window=0.01[a1];[a1]rubberband=tempo=0.948" -c:v copy -cutoff 7500 sample.fix.mp4












I still wonder if there is a better way. Thanks guys.


Refer :


- 

- How to stretch the WAV file to the same video length ?
- How to trim out black frames with ffmpeg on windows ?






-