
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 (70)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (9029)
-
How can I fix missing footage when I trim a video through ffmpeg ?
18 juillet 2021, par LPMAI'm trying to remove commercials from an old PVR recording, and am extracting the main program by trimming/splitting the original file into separate parts :


ffmpeg -i name.avi -ss 00:02:00 -to 00:08:20 -acodec copy -vcodec copy part01.avi
ffmpeg -i name.avi -ss 00:11:23 -to 00:22:03 -acodec copy -vcodec copy part02.avi
ffmpeg -i name.avi -ss 00:25:34 -to 00:36:37 -acodec copy -vcodec copy part03.avi
ffmpeg -i name.avi -ss 00:40:08 -to 00:52:11 -acodec copy -vcodec copy part04.avi
ffmpeg -i name.avi -ss 00:55:41 -to 01:52:53 -acodec copy -vcodec copy part05.avi



For some reason, parts 3 and 5 are perfect, whereas parts 1, 2 and 4 each have about 9 seconds where the audio is playing against a "frozen" frame before the video part starts playing normally. The audio data seems to be intact (and cut at the designated place), but the video seems to be missing that data. I'm guessing it might have to do with reference frames ? Is there a quick way to fix/avoid the issue ? I would like to avoid data loss (through transcoding) as much as possible.


-
FFmpeg Converted files not working on firefox
23 septembre 2014, par KevinkuijerWhen i convert a file with ffmpeg and play the video in firefox i get this error :
"VIDEOJS:" "ERROR:" "(CODE:3 MEDIA_ERR_DECODE)" "The video playback was aborted due to a corruption problem or because the video used features your browser did not support." Object { code: 3, message: "The video playback was aborted due to a corruption problem or because the video used features your browser did not support." }
In other browsers it’s working perfect.
This is my ffmpeg convert command :ffmpeg -i {input} -b 5500k -minrate 5500k -maxrate 5500k -bufsize 5500k -ab 384k -vcodec libx264 -acodec aac -strict -2 -ac 2 -ar 96000 -s 1280x720 -y {output}
Can someone tell me why the videos won’t play in firefox ?
-
ffmpeg does not produce smooth videos from mkv h265 [migrated]
13 décembre 2018, par user3776738It’s kind of subjective, but I’m not able to produce 100% smooth videos with ffmpeg.
As input I use https://www.libde265.org/hevc-bitstreams/tos-1720x720-cfg01.mkv as a example.This is a h264 mkv video which is running really badly with my vlc player on my win7 laptop.Converting it to a h264 video let it play much better, but it still appears not to be 100% smooth. Especialy in Vegas 9 it even hangs like once a second.Other h264 videos even with 1080p or bigger run perfect with vlc and much better with Vegas, so it is not my laptop.
its seems that there can be a lot of differences between h264 and h264 ??
what could i try to make them more smooth ?I’m using following command to convert the video :
ffmpeg.exe -i INPUT_FILE -ac 2 -vf scale=trunc\\(oh*a/2\\)*2:480 -c:v libx264 -sn -dn -map_metadata -1 -map_chapters -1 -profile:v high -level:v 4.0 -pix_fmt yuv420p OUTPUT_FILE