
Recherche avancée
Autres articles (92)
-
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 ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
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 (...)
Sur d’autres sites (13050)
-
Revision 0048ec2329 : Costing fixes related to trellis optimization Migrates costing changes/fixes fr
31 mai 2013, par Deb MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_block.h
Modify /vp9/encoder/vp9_encodemb.c
Modify /vp9/encoder/vp9_rdopt.c
Costing fixes related to trellis optimizationMigrates costing changes/fixes from the rebalance expt to the head
without the expt on.Rebased.
Change-Id : I51677d62f77ed08aca8d21a4c9a13103eb8de93f
Results :
derfraw300 : +0.126% -
FFMPEG map 7.1 surround to 5.1 during transcode
12 décembre 2022, par dongleI have a ProRes MOV whose audio contains 8 channels of audio in a 7.1 surround layout (L R C LFE Ls Rs Lt RT).


I am preparing an H.264 MP4 for a media player that only supports AAC, and does not support 7.1, so I would like to map to 5.1, dropping ther 7th and 8th channels (Lt and Rt). Under normal circumstances I would just use the below for my transcode :


ffmpeg -i input_file -c:v libx264 -pix_fmt yuv420p -preset veryslow -crf 18 -c:a aac output_file


I've been looking at the documentation for audio layout manipulation, but am having trouble wrapping my head around it and they don't have a specific example of what I'm trying to do.


Do I need to export my audio to a WAV file first, or is there a way to manage the mapping in my transcode command ? How can I map the existing first 6 channels to the new file ?


-
Streaming with ffmpeg
15 juillet 2014, par jakebird451I am using ffmpeg to encode a video from a non-mp4 format to an mp4 format. My goal is to provide the video while its encoding to the client (http link). The link is provided with cherrpypy using python. To perform the encoding, I use the
subprocess.Popen
command and redirect the output to a pipe. Providing the file live to a browser is fine, however finding how to encode the video though ffmpeg to get my desired result is not going so well.The only command I found so far that even works is :
ffmpeg -i {inputfile} -nostats -frag_duration 3600 -f mp4 -
. This command "works", the audio is flawless however the video is encoded to what looks like 4x (or 2x) the speed of the original video. So I have been experimenting with commands to see if I can fix the video defect but so far I have yet to fix the same problem. I have been attempting to inject the-vcodec libx264
command, still the same problem.To assist in troubleshooting my problem, I decided to also save the stream to a file. Playing the recorded file yields the same effect. However, interestingly enough, playing the video though VLC and Windows Media Player fixes the video problem and the video plays perfectly fine. Sound and all. It just seems as though the html5 player (with Google Chrome) does not like however I am packing the video. It seems as thought Google Chrome and my encoded file do not play well together.
Continuing with the streaming issue, breaking the encoding process still shows the video encoding just fine in VLC and in Windows Media Player. Well, it plays the video just fine up to until I pressed ctrl-c of course. So it seems that maybe it is not the encoding that is the problem, but either :
- It is a problem with the header for the generated mp4 file
- Google Chome is disregarding the frame rate specified in the file and mandating, say, 60 fps or even 120 ? (which would cause the fast forwarding effect)
The webpage that I am using to show the video is dynamically created and is formed using the template below :
<video controls="controls">
<source src="{link}"></source>
Your browser sux. Fix it.
</video>
The
{title}
and{link}
components are substituted with the corresponding components. If anyone has any suggestions on how to troubleshoot this problem I would be more than willing to listen. As of right now, I am stuck on how to progress with the current state of this issue.