
Recherche avancée
Autres articles (99)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14241)
-
ffmpeg : `ffmpeg -i "/video.mp4" -i "/audio.m4a" -c copy -map 0:v:0 -map 1:a:0 -shortest "/nu.mp4"` truncates, how to loop audio to match videos ? [closed]
18 avril 2024, par Swudu SusuwuThis is with "FFmpeg Media Encoder" from Google Store (Linux-based Android OS), but it has all the commands of ffmpeg for normal Linux.


-shortest
truncates the video to match the audio, and-longest
has the last half of the video not have audio (for videos twice as long as audio,)

what to use to loop audio (to match length of video with this) ?


Video length is 15:02, so used
ffmpeg -i "/audio.m4a" -c copy -map 0:a:0 "/audionew.m4a"
-t 15:02 -stream_loop -1`, but got errors.

-
Revision 715b8d3bef : Merge "Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :"""
28 juin 2014, par James ZernMerge "Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :"""
-
Which H264 Level is supported by HTML5 on browsers ?
17 mai 2017, par Koby DouekI’m trying to figure out which H264 Level is supported by HTML5
<video></video>
elements in current browsers ?Current H264 Levels contraint of
1.0
,1.1
.... all the way to5.1
For exmaple - in the following AS3 code, the following level is not supported by Google Chrome or IE :
var h264Settings:H264VideoStreamSettings = new H264VideoStreamSettings();
h264Settings.setProfileLevel( H264Profile.BASELINE, H264Level.LEVEL_3 );
▲Or setting the level in FFMPEG :
-c:v libx264 -profile:v baseline -level 3.0
Also does not work (in chrome).
Which level value is supported by all current browsers ?