
Recherche avancée
Autres articles (51)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (7479)
-
How to segment a video file (using FFMPEG) to "encoded" version (i.e., .mp4 is downloaded from one our CDN servers) in which each chunk must be 4MB ?
13 janvier 2019, par Danyal ZiaI am using FFMPEG command-line/terminal tool. I have a video in .mp4 format. I am well educated on the segmentation of videos in terms of length/duration, however, I want to segment the chunks of the "encoded/transcoded" version of the video (which I downloaded from our CDN in.mp4) to 4MB (4000000 Bytes), except the last one, which will vary in size (i.e., to encode/decode the video fully). If I am having trouble explaining what I am seeking, then just know I have no interest in segmenting the video in terms of duration/length, as this is irrelevant for me.
To explain the scenario : I have two copies of the same video. The one is "original" and the second video is the one that I downloaded from the server/CDN. The second video turns out to be corrupted (despite the fact that the video is downloaded successfully, and has the same length/duration) ; it stops playing around 1:12 minutes, even though the seeker/slider keeps progressing until somewhere around 1:45 minutes where the video and audio start to work again.
I have done the binary comparison (using "fc" in CMD) of these two videos, and they are not the same at all.
In a nutshell : I think I need to "encode" the corrupted .mp4 video, and then segment the encoded data to multiple versions of 4MB. I don’t know how can I do it from FFMPEG.
If anything isn’t clear, then ask as many questions you want.
Thank you for reading !
Edit : The following seems to work, however, not all the chunks are equivalent to 4MB. What is a something I am doing the wrong way ?
ffmpeg -i "original.mp4" -b:v 1000000 -g 60 -hls_time 2 -hls
_list_size 0 -hls_segment_size 4000000 output.m3u8 -
What is the algorithm to achieve audio decoding in C through ffmpeg ? [on hold]
16 août 2018, par user8371461I want to decode the MP3 audio file, I want to know the algorithm in terms of C language API’s. I have gone through dranger tutorials. But the API’s they used are deprecated now. Could anyone tell me what are the API’s I need to follow one by one ?
-
Audio equalizer using FFmpeg
28 septembre 2015, par Evgeniy KharchenkoI’m developing audio player using FFmpeg. I want to add audio equaliqer to my app, but I don’t know how to do it. I know that FFmpeg has a FFT functions, but I have count of samples that not mutch with any power of 2. I also tried to use other FFT libraries, but I have some noise on my audio after equalization.
Can anybody help me to understand how to use FFmpeg’s FFT functions or any oter ways to implement audio-eq using FFmpeg ?