
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (49)
-
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) (...)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (6084)
-
Encode live audio stream with ffmpeg
11 novembre 2015, par Victor Canezin de OliveiraSomeone please help me.
I’m trying to encode a live audio stream with ffmpeg. I’m using it Chrome’s native client.
It’s getting the audio from GetUserMedia() and sending it to pnacl. It receives the audio and send it to ffmpeg to encode. The problem is the final audio is chopped.
I think the problem is that the codec
frame_size
is larger than the streamnb_samples
(1152 and 480 respectively) and it’s leaving a "blank" audio data at the end of each frame (I’m no audio expert).I am creating the AVFrame like this :
AVFrame *frame = av_frame_alloc();
frame->nb_samples = nb_samples; //(I get it from the stream)
AVSampleFormat sample_fmt = ost->st->codec->sample_fmt;
// nb_channels, buffer and buffer_size I get from the stream
avcodec_fill_audio_frame(frame, nb_channels, sample_fmt, buffer, buffer_size, 0);And encoding with
avcodec_encode_audio2
I am using a mix of nacl example and muxing.c example from ffmpeg.
Can someone help me ?
-
Concatenate DASH audio and video to single file
13 mars 2017, par AndreasFirst of all, I have a folder with about 200 video and audio segments (m4v and m4a) of a video that was live streamed as DASH video. Now - without having the original file - I want to concatenate those parts to a single, playable video file.
To mention what I already tested :
- concatenate via the Unix terminal command cat ; unfortunately this won’t help to make the video playable in any media player again
- using ffmpeg’s merge abilities via files.txt ; with the same unsuccessful result
I’m definitely not an expert (otherwise I probably wouldn’t ask) but the problem may be also the missing mpd and/or init file (as far as I could skim in the standard).
Don’t get me wrong : I don’t want to get a bit to bit identical result of the original file. All I want to achieve is a single playable mp4 file of aforesaid video.
I also tried to make a own mpd file, but the "stream" won’t play. FYI, I tried playing it in the current VLC 3.0.0 git, since the current stable versions seems not to support DASH.
If it helps, here the video codec :id="live-hd_H264"
mimeType="video/mp4"
codecs="avc1.4d401f"
width="396"
height="704"So, can anybody help me ?
Kind regards !
-
Concatenate DASH audio and video to single file
18 mars 2019, par AndreasFirst of all, I have a folder with about 200 video and audio segments (m4v and m4a) of a video that was live streamed as DASH video. Now - without having the original file - I want to concatenate those parts to a single, playable video file.
To mention what I already tested :
- concatenate via the Unix terminal command cat ; unfortunately this won’t help to make the video playable in any media player again
- using ffmpeg’s merge abilities via files.txt ; with the same unsuccessful result
I’m definitely not an expert (otherwise I probably wouldn’t ask) but the problem may be also the missing mpd and/or init file (as far as I could skim in the standard).
Don’t get me wrong : I don’t want to get a bit to bit identical result of the original file. All I want to achieve is a single playable mp4 file of aforesaid video.
I also tried to make a own mpd file, but the "stream" won’t play. FYI, I tried playing it in the current VLC 3.0.0 git, since the current stable versions seems not to support DASH.
If it helps, here the video codec :id="live-hd_H264"
mimeType="video/mp4"
codecs="avc1.4d401f"
width="396"
height="704"So, can anybody help me ?
Kind regards !