Questions tagged «media»

13
Django MEDIA_URL和MEDIA_ROOT
我正在尝试通过Django管理员上传图像,然后在前端的页面中或仅通过URL查看该图像。 请注意,这些全部在我的本地计算机上。 我的设置如下: MEDIA_ROOT = '/home/dan/mysite/media/' MEDIA_URL = '/media/' 我已将upload_to参数设置为“ images”,并且文件已正确上传到目录: '/home/dan/mysite/media/images/myimage.png' 但是,当我尝试通过以下URL访问图像时: http://127.0.0.1:8000/media/images/myimage.png 我收到404错误。 我需要为上传的媒体设置特定的URLconf模式吗? 任何建议表示赞赏。 谢谢。
229 django  media 

11
使用ffmpeg将音频文件转换为mp3
我需要使用ffmpeg将音频文件转换为mp3。 当我将命令写ffmpeg -i audio.ogg -acodec mp3 newfile.mp3为时,出现错误: FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: libavutil 49.15. 0 / 49.15. 0 libavcodec 52.20. 1 / 52.20. 1 libavformat 52.31. 0 / 52.31. 0 libavdevice 52. 1. 0 / 52. 1. 0 built on Jun 24 2010 14:56:20, …
159 audio  ffmpeg  media 

6
使用FFmpeg检索和保存媒体元数据
我想读取媒体文件中的元数据,然后将该元数据保存在text / xml文件中,以便以后可以在数据库中插入该数据。我宁愿使用ffmpeg。 MediaInfo也可能有同样的事情吗?我知道我可以使用MediaInfo来获取单个曲目的元数据,但是我想使其自动化。与发现新媒体文件时一样,请读取其元数据,然后将其存储在txt / xml文件中。 或者,还有其他可用于此目的的工具/工具/ API吗?
74 ffmpeg  metadata  media 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.