
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (14178)
-
The frame count getted from FFmpeg is different from its splitting action result ?
21 février 2020, par vividlipiI had executed these two commands, and I got confused by its unconsistent result.
-
I got frame count through the command following :
ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 FPS30-536-CFR.mp4
The result is 536.
-
I fetched every frame and saved it to a directory :
ffmpeg -i FPS30-536-CFR.mp4 ./frames/out%04d.jpg
I got 537 pictures in the
./frames
directory which numbers form0001.jpg
to0537.jpg
I had tried another video, the two results are maintained the same.
Please give me some hints, thank you very much.
-
-
Anomalie #4422 (Nouveau) : PHP 7.2 : warning sur count() dans ecrire/public/aiguiller.php
7 janvier 2020, par - EquipementBonjour,
Sous PHP 7.2, avec SPIP 3.2 (et également avec SPIP 3.3), il y a deux "Warning" dans ecrire/public/aiguiller.php.
- Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 228
- Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 242
Cela concerne :- <span class="CodeRay"><span class="keyword">if</span> (<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) <span class="keyword">and</span> ...
- <span class="keyword">if</span> ((<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) == <span class="integer">0</span>))
- </span>
Cordialement
Equipement -
Concatenating two audio files, keeping the channel count of the second file
6 septembre 2019, par Jon HI am attempting to concatenate two MP3 files into a single MP3 file. So far this has worked fine with the following command :
ffmpeg -y -i "first.mp3" -i "second.mp3" -c:a libmp3lame -qscale:a 1 -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[outa]" -map "[outa]" combined.mp3
I wish to keep the channel count of the second input. For example, the first input is always mono, but if the second channel is stereo, I wish the output to be stereo. This command appears to always output the same channel count as the first input.
I have tried reversing the order of the inputs, and reversing the mapping of the concat filter, but this had the same result.
Any ideas ? Thanks.