
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (25)
-
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (3145)
-
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> -
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 !!
-
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