
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (85)
-
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 (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3516)
-
how to cut audio file and merge with video file in android ?
27 avril 2016, par Mayank SugandhiI want to cut audio and merge audio file with video programmatically in android.
I don’t Know how to use FFMPEG library in windows, Can You tell me how to integrate Or if any other solution ? I am finding the answer this question from last 3 months 15 days, still i am not able to get correct answer
Please Help Me,
Thank You for Appreciation.
-
Combine mp4 init file and m4s segments to a single mp4 file
5 août 2020, par David OzIn my
Nodejs
server, I'm trying to combineinit-file
inmp4
format, with somem4s
segments.
I've usedBuffer.concat()
and it partially worked, it seems like the segments hold an offset because they are taken from the middle of a video that is played withmpeg-dash
, which causes an incorrect start time. when I use thefluent-ffmpeg
npm
library, the file is fixed, but it takes way too long (about as long as the video itself).
I was wondering if is it possible to fix the problem by changing some bytes in the buffer or anything faster like that.

-
Issues with file created using FFMPEG
31 mars 2020, par amateurI am a newbie to ffmpeg but currently using it Powershell to cut video clips from an mp4 file. What I am looking to do is cut a segment from a video and create a new mp4 file with such. I run the following command, see following example for one clip created. Run this multiple times with different start times and duration's through out the source file :



-ss 00:02:42.9060000 -i "C:\Users\User\Desktop\MySourceVideo.mp4" -t 00:00:07.2800000 -c:v copy "C:\Users\User\Desktop\MyClip.mp4" -y -v quiet




Source file is mp4, with H264 video codec, AAC video codec.



While it creates the clips, I run it at different times in the source video creating multiple cut mp4 videos. When I look to play the newly created mp4 files, for some clips I find some inconsistencies, such as :



- 

- Playing the file for first few seconds just has black scream
- Playing the file for first few seconds has video moving very fast and then normal again







Some clips are perfect, others have the above issues. I would appreciate if my command could be checked in case I am missing a parameter or any further insight could be given ?