
Recherche avancée
Autres articles (83)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (13573)
-
Is it possible to change resolution in second pass for ffmpeg multipass encodes ;x264 and x265 ?
30 mai 2017, par Karthik MI have been using the following commands for two pass encodes
ffmpeg -i <input /> -c:v libx265 -x265-params pass=1:crf=22 -f mp4 /dev/null
ffmpeg -i <input /> -c:v libx265 -x265-params pass=2 <output>
</output>If i try changing resolution in second pass with vf scale
ffmpeg -i <input /> -vf scale=720:-2 -c:v libx265 -x265-params pass=2 <output>
</output>i get `
[Error]CU-tree frame type 87 doesn’t match actual frame type 0.
`
EDIT 1 : x264 and x265 have been around for years did someone not find a solution/hack to having multiple output resolutions using stats from first pass at a different resolution, atleast bitrate distribution would look same i presume
-
How to transcode a video to custom resolution using Xamarin.MP4Transcoder.Transcoder
7 juillet 2017, par PrashantI need to transcode a video to 640*480 resolution using Xamarin.MP4Transcoder.Transcoder. Currently there are 2 available resolutions 720pFormat and 960x540Format. There is a method called
Transcoder For (IMediaFormatStrategy strategy)
available in Transcoder class.I can create MediaFormat object with MIME Type, Width and Height
by below mentioned code snippet :MediaFormat obj = MediaFormat.CreateVideoFormat("video/mp4", 480, 640);
but the problem is how can assign it to IMediaFormatStrategy or is there any other way to achieve this.
Piece of code for Transcoding a video:
Xamarin.MP4Transcoder.Transcoder.For960x540Format().ConvertAsync(inputFile, outputFile, f => { onProgress?.Invoke((int)(f * (double)100), 100); } );
inputFile: Video file which needs to be transcoded.
outputFile: Resultant file generated after transcoding.For more info you can refer https://github.com/neurospeech/xamarin-android-ffmpeg
Any help is appreciated. Thanks in advance !!
-
Resolution switcher for HLS streaming
19 septembre 2017, par Awais fiazi am trying to add up a quality picker for users to select desired quality on which they want to play the video using
video.js
.I have tried using 2 or 3 open source plugins all of which were deprecated or having old code which is not supported now and the worst thing is many of the of the files are missing in them.is there any solution to add up quality picker forHLS
streaming onvideo.js
?
Any help would be much appreciated
here is my sample code to play HLS streaming USINGvideo.js
the current plugin i am using is :
https://github.com/streamroot/videojs-quality-picker<video class="video-js" controls="controls" preload="auto" width="640" height="264" data-setup="{}" autoplay="autoplay">
<source src="legend_hls/legend_playlist.m3u8">
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser that
<a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
</p>
</source></video>
<code class="echappe-js"><script><br />
videojs('my-video').qualityPickerPlugin();<br />
</script>