
Recherche avancée
Autres articles (67)
-
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 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7444)
-
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.
-
MERGE MULTIPLE VIDEO FILE INTO THEIR CORRESPONDING AUDIO FILE USING FFMPEG [closed]
20 juin 2023, par ANUBHAV MAURYASuppose I have three video files with no audio "ES01.mp4" "ES02.mp4" "ES03.mp4" and I have also there audio file with name "ES01.acc" "ES02.acc" "ES03.acc" How to join together


- 

- VIDEO1+AUDIO1=NEW_VIDEO1
- VIDEO2+AUDIO2=NEW_VIDEO2 AND further for another video






In this image shown file details and name


-
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 ?