
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (107)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (11481)
-
I have a file that purports to be "uncompressed mov" that I want to convert to raw using ffmpeg
9 août 2015, par Lyman HurdI am running Ubuntu. Here is what I receive and also cannot play the movie with vlc or totem, however the sender insists that these files play on a Mac using QuickTime. Thoughts as to what might be wrong ?
~/bin/ffmpeg -i movie.mov ffmpeg version N-50051-g8d0757e Copyright (c) 2000-2013 the FFmpeg developers
built on Aug 8 2015 18:44:04 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --enable-libvpx --enable-libx264 --prefix=/home/lhurd --enable-gpl
libavutil 52. 17.102 / 52. 17.102
libavcodec 54. 92.100 / 54. 92.100
libavformat 54. 63.100 / 54. 63.100
libavdevice 54. 3.103 / 54. 3.103
libavfilter 3. 38.103 / 3. 38.103
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
movie.mov: Invalid data found when processing inputHere’s an "od -c" of the head which at least shows that the file isn’t raw :
0000000 \0 005 026 \a \0 002 \0 \0 M a c O S X
0000020 \0 002 \0 \0 \0 \t \0 \0
0000040 \0 2 \0 \0 \0 F \0 \0 \0 002 \0 \0 \0 x \0 \0
0000060 \0 \0 M o o V T V O D \0 \0 \0 \0 \0 \0
0000100 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0
0000120 \0 \0 \0 \0 A T T R \0 \0 \0 \0 \0 \0 \0 x
0000140 \0 \0 \0 x \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0
0000160 \0 \0 \0 \0 \0 \0 \0 \0
0000170 -
ffmpeg replace central channel with ffmpeg
24 mai 2020, par Rafal BI'm trying to replace central channel in the movie (Movie-A) with another audio stream from another movie (Movie-B).
I was able to extract stereo stream from Movie-B :



ffmpeg.exe" -i "Movie-B.mkv"

Stream #0:1(pol): Audio: ac3, 48000 Hz, stereo, fltp, 320 kb/s (default)




and convert it to mono stream :



ffmpeg.exe" -i "Movie-B.mkv" -vn -ab 320k -ac 1 "Movie-B-Audio.ac3"
Output #0, ac3, to 'Movie-B-Audio.ac3':
Stream #0:0(pol): Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s (default)




For Movie-A :



ffmpeg.exe" -i "Movie-B.mkv"
Stream #0:1(eng): Audio: aac (LC), 48000 Hz, 5.1, fltp (default)




so Layout is
5.1
(FL+FR+FC+LFE+BL+BR
), not5.1(side)
(FL+FR+FC+SL+SR
)


Media Info shows :



Audio
ID: 2
Format: AAC
Format info: Advanced Audio Codec Low Complexity
Commercial name: AAC
Codec ID: A_AAC-2
Bit rate: 426 kb/s
Channel(s): 6 channels
Channel positions: Front: L C R, Side: L R, LFE
Channel layout: C L R Ls Rs LFE




I have extracted all 6 channels into one stream with containing 6 channels :



ffmpeg.exe" -i "Movie-A.mkv" -vn -ab 320k -ac 6 "Movie-A-Audio.ac3"
Output #0, ac3, to 'Movie-A-Audio.ac3':
Stream #0:0(eng): Audio: ac3, 48000 Hz, 5.1, fltp, 320 kb/s (default)




But at this stage I'm getting different Layout in Movie-A-Audio.ac3 :



Audio
Format : AC-3
Format/Info : Audio Coding 3
Commercial name : Dolby Digital
Duration : 2 h 16 min
Bit rate mode : Constant
Bit rate : 320 kb/s
Channel(s) : 6 channels
Channel layout : L R C LFE Ls Rs




In source Movie-A.mkv it is :
Channel layout : C L R Ls Rs LFE



In output Movie-A-Audio.ac3 it is :
Channel layout : L R C LFE Ls Rs



Then I tried to extract those 6 channels into separate mono-stream files :



ffmpeg.exe" -i "Movie-A-Audio.ac3" -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]" -ab 320k -ac 1 -map "[FL]" extr_front_left.ac3 -ab 320k -ac 1 -map "[FR]" extr_front_right.ac3 -ab 320k -ac 1 -map "[FC]" extr_front_center.ac3 -ab 320k -ac 1 -map "[LFE]" extr_subwoofer.ac3 -ab 320k -ac 1 -map "[BL]" extr_back_left.ac3 -ab 320k -ac 1 -map "[BR]" extr_back_right.ac3




With result :



Stream mapping:
 Stream #0:0 (ac3) -> channelsplit
 channelsplit:FL -> Stream #0:0 (ac3)
 channelsplit:FR -> Stream #1:0 (ac3)
 channelsplit:FC -> Stream #2:0 (ac3)
 channelsplit:LFE -> Stream #3:0 (ac3)
 channelsplit:BL -> Stream #4:0 (ac3)
 channelsplit:BR -> Stream #5:0 (ac3)
Press [q] to stop, [?] for help
Output #0, ac3, to 'extr_front_left.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #0:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3
Output #1, ac3, to 'extr_front_right.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #1:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3
Output #2, ac3, to 'extr_front_center.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #2:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3
Output #3, ac3, to 'extr_subwoofer.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #3:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3
Output #4, ac3, to 'extr_back_left.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #4:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3
Output #5, ac3, to 'extr_back_right.ac3':
 Metadata:
 encoder : Lavf58.29.100
 Stream #5:0: Audio: ac3, 48000 Hz, mono, fltp, 320 kb/s
 Metadata:
 encoder : Lavc58.54.100 ac3




When I'm checking channels layouts of those files extracted I see each of them is having Channel Layout marked with Central, for instant front_left.ac3 :



Audio
Format : AC-3
Format/Info : Audio Coding 3
Commercial name : Dolby Digital
Duration : 2 h 16 min
Bit rate mode : Constant
Bit rate : 320 kb/s
Channel(s) : 1 channel
Channel layout : C
Sampling rate : 48.0 kHz




Then I try to join needed channels :



ffmpeg.exe" -i extr_front_left.ac3 -i extr_front_right.ac3 -i Movie-B-Audio.ac3 -i extr_back_left.ac3 -i extr_back_right.ac3 -i extr_subwoofer.ac3 -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a]join=inputs=6:channel_layout=5.1[a]" -map "[a]" "final-output.ac3




But it is completely messed up : central channel (voice) is heard in front right speaker, in back right speaker is silence (or maybe it is subwoofer ?)



Target is easy :



- 

- convert source stereo central audio channel in Movie-B.mkv to mono channel
and
- insert it as central channel into Movie-A.mkv that have 5.1 Audio stream with layout
C L R Ls Rs LFE







So far I was able to complete 1. but I have a problem with mappings.
Can someone try to guide me how to do that ?


-
Crop video with FFMpeg is very slow
26 octobre 2018, par SayakiI’m using ffmpeg in android to crop video. To do it I use command :
ffmpeg -i movie.mp4 -vf "crop=640:256:0:400" -strict -2 YourCroppedMovie.mp4
My problem is that it is incredible slow. Cropping 10sec movie taking some about 30sec. Is there any way to speed it up ?