
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 (76)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (4968)
-
FFmpeg libx264 artifacts on moving scene
26 mars 2020, par user13125448I am encoding a video with libx264 and have film noise and i have artifacts on a moving scene with a wall or background, how do you avoid these artifacts with ffmpeg.
-
sws_scale with PIX_FMT_RGB48 distorts color
26 juin 2013, par PeterFolks,
I need to open an input bitmap file, increase the pixel depth from 8 bits to 12 bits RGB and dump the image as an uncompressed file.
I am using libavcodec to accomplish this. Fortunately, the very first example from dranger's famous tutorial does most of what I want to do. It even has a method to save the frame as a .ppm file.
When I use PIX_FMT_RGB24 with sws_getContext/avpicture_fill/sws_scale, the generated output file contains the correct 8-bit RGB value. For example, my first pixel in the input file has the RGB value of 0xFF, 0x6A, 0x00. I can see this value in the generated .ppm file.
However, when I replace PIX_FMT_RGB24 with PIX_FMT_RGB48, it appears sws_scale is changing the color value. For example the first pixel now shows up as 0x15FF, 0x3F6a, 0x0000.
I changed sws_getContext flag from SWS_BILINEAR to SWS_POINT. However, this did not make any difference in the output.
I would appreciate it if someone can please help me understand what is it that I am doing wrong.
Thank you in advance for your help.
Regards,
Peter -
how is maxrate used in FFMPEG when converting ?
9 septembre 2013, par rhbc73I met a problem when converting video stream into mpeg2 format with specified max bitrate in FFMPEG.
The input file has a high bitrate of about 40Mbps (resolution is 720P),
what I want to archive is to get a mpeg video of max bit rate of 9Mbps (keep same resolution)
But when I used
ffmpeg.exe -i Untitled720P.mp4 -c:v mpeg2video -c:a ac3 -r 25 -pix_fmt yuv420p -g 15 -
b:v 6000000 -maxrate 9000000 -minrate 0 -bufsize 1835008 -packetsize 2048 -muxrate
10080000 -b:a 448000 -ar 48000 manual.mpgthere came out lots warnings of "buffer underflow", and the generated file has an overall bitrate of 29.7Mbps although 9000k is specified to be max.
This generated mpeg video, when played in VLC player, stopped somewhere.
So I want to know, if there's any other argument I can use to force ffmpeg to generate an output which strictly stays below the specified max bitrate ?
Great thanks