
Recherche avancée
Autres articles (50)
-
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 (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (5684)
-
Converting GridFS file object to File object to upload via carriewave then process with ffmpeg in Rails
20 juin 2014, par OjashI have a GridFS file object
Mongoid::GridFs::Fs::File _id: 53a277dc700ca7ac146f5797, length: 2237337, chunkSize: 261120, uploadDate: 2014-06-19 05:40:44 UTC, md5: "390968a8ef198f8537495468366f67b9", filename: "720p_5.MP4", contentType: "binary/octet-stream", aliases: nil, metadata: nil
Now I need a Tempfile(or File will do) instance from that
File:/tmp/fileupload20140620-4601-19via7k
Since the file that I process is a video file i need to further process it with the ffmpeg to get different versions of the video file
normally I could get a tmp file but the tempfile size seems to be quite low for a video file and the ffmpeg also gives error, may be the temp file created is not correct. I have no idea what did i do wrong.
-
Only one .ts file is generating while encoding mp3 file to m3u8 using ffmpeg
15 octobre 2019, par mrlonelyI am not able to play m3u8 link for some specific files.
Details are as follows :
ffmpeg -i low_30.mp3 -codec:v libx264 -b:v 64k -maxrate 64k -bufsize 64k -vf scale=-2:480 -threads 0 -vsync 2 -pix_fmt yuv420p -codec:a aac -b:a 64k -hls_list_size 0 abc.m3u8
Error :
[libx264 @ 0x7fc83280ba00] MB rate (81000000) > level limit (2073600)
[libx264 @ 0x7fc83280ba00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x7fc83280ba00] profile High 4:4:4 Predictive, level 5.2, 4:4:4 8-bit
[hls @ 0x7fc832809e00] Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.Sample File URL : https://s3-ap-southeast-1.amazonaws.com/hog-original/low_30.mp3
Only one TS file is generating in this case and not able to play the m3u8 link.
-
FFMPEG. How to convert file with stereo (2 channels) to file with 8 channel (2 with sound + 6 mute)
27 avril 2021, par WhitelanderI have a stereo video file which I would like to convert to another video file, but instead of only 2 channels I would like to have 8 audio channels. Two of them (1st and 2nd channel) would need to be the same as input file, all the rest has to be mute. I would like to use ffmpeg script. Anyone ?