
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (8699)
-
I am trying to extract video file using below code i'm getting an 500 internal server error ?
17 octobre 2014, par RameshThe problem is that I get a "500 internal server error" the first time I execute the script, but it works as I expect if I reload the page.
I am using below code.
exec(FFMPEG_PATH." -i $uploadedfile -vcodec copy -acodec copy $path/webservice/ovideos/$thumb_name.mp4 > ".NULL_FILE);
exec(FFMPEG_PATH." -itsoffset $jpegFrameTime -i $path/webservice/ovideos/$thumb_name.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -s 120x110 $path/webservice/images/thumbs/$thumb_name.jpg > ".NULL_FILE); -
ffmpeg batch convert from working Linux code to Windows
30 mai 2016, par iisacI have this code on my Linux :
for i in ./*.mkv; do \
ffmpeg -i "$i" -c:v libvpx-vp9 -pass 1 -b:v 5M -threads 8 -speed 4 \
-tile-columns 6 -frame-parallel 1 \
-an -y -f webm /mnt/TemppiKovo/HEVC_perseily && \
ffmpeg -i "$i" -c:v libvpx-vp9 -pass 2 -pix_fmt yuv420p -b:v 5M -threads 8 -speed 1 \
-tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 \
-c:a libopus -b:a 320k -f webm "${i%.mkv}-VP9.webm"
doneHow do I do exactly the same on Windows ?
-
Parsing the ffmpeg code for a small change
4 janvier 2015, par PrashanthReferring to the post
"Is there a way to filter out I/B/P frames in an MPEG Video stream and access the macroblock information ?".
User has specified the following commandffprobe -show_frames -pretty File.mpg | grep 'pict_type' > pict_type.txt
which writes the frame type to a text file.
Am trying to extract the different frame types into respective folder i.e., I frames in a folder named "Iframes" and so on... How can I change the above command to achieve this ?