
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (73)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (9074)
-
FFmpeg - convert 2 audio tracks from video to 5.1 audio, (play video with different languages to different devices) [closed]
10 février, par SandreHow to watch a movie with one language playing through the speakers and another through the headphones ?


Disclaimer : I know nothing about audio conversion, and don't want to study ffmpeg. I spend a few hours searching how to do, actually much more than I want. I found a bunch of questions from different people and not a single working solution, so I made a clunky but working solution. If someone helps me make it more elegant, I'll be happy. If my question just gets downvoted like most ffmpeg newbie questions, it probably deserves it. And I hope my question can help people who want enjoy video with 2 different languages.


A clumsy but working solution.


- 

-
Setup Aggregate Audio Device to play 2 channels of 5.1 through speakers and 2 through bluetooth headphones. (On screenshot Audio MIDI Setup for MacOS)



-
Use ffmpeg to convert 2 audio tracks into 5.1 audio.


-
Play video with new external audio track.










# print list of channels
ffprobe INPUT.mkv 2>&1 >/dev/null | grep Stream

--- sample output ---
 Stream #0:0(eng): Video: h264 (High), yuv420p(progressive), 1280x544, SAR 1:1 DAR 40:17, 23.98 fps, 23.98 tbr, 1k tbn (default)
 Stream #0:1(rus): Audio: ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s (default)
 Stream #0:2(eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 640 kb/s

# extract audio
ffmpeg -i INPUT.mkv -map 0:1 -acodec copy ru.ac3
ffmpeg -i INPUT.mkv -map 0:2 -acodec copy en.ac3

# extract only front_center channel from 5.1 - speach
ffmpeg -i en.ac3 -filter_complex "channelsplit=channel_layout=5.1:channels=FC[center]" -map "[center]" en_front_center.wav
ffmpeg -i ru.ac3 -filter_complex "channelsplit=channel_layout=5.1:channels=FC[center]" -map "[center]" ru_front_center.wav

# join to 5.1
ffmpeg -i en_front_center.wav -i ru_front_center.wav -filter_complex "[0:a][0:a][0:a][0:a][1:a][1:a]join=inputs=6:channel_layout=5.1[a]" -map "[a]" output.wav



Is it possible to avoid re-encoding the audio and copying the same channel many times to reduce the file size ?


-
-
How do Iuse FFMPEG API to add AV_CODEC_ID_ASS stream to my MPEGTS video format
31 juillet 2020, par Meir IvryI want to add an ASS/SSA subtitle stream to my video format using FFMPEG API.


The specification for that format is in the following link :
ASS file format specification
(http://www.tcax.org/docs/ass-specs.htm)


I know how to that with video, where it compirsed of the following steps


- 

- get the desired
AVCodec
- create new
AVStream
- create new
AVCodecContext
- create the proper
AVFrame
for each raw video frame. - use
avcodec_send_frame
to encode frame - use
avcodec_receive_packet
to get the frame packets - use
av_interleaved_write_frame
to write the packets
















My question is the same procedure applies to subtitles and, if so, how do I initialize the
AVFrame
?
Moreover, is there more to know other than that ?

Thanks.


- get the desired
-
Audio Video Editing in Python : How to do it ? [on hold]
12 mai 2019, par DoakCodeDoes anyone know how to do it ? It’s a bit more complex then then the usual docs I’ve read, so I don’t know where to start and I’d appreciate someone leading me to the right docs or the right path.
The software should be doing following :
- Taking a background picture and making it blurred -> The background
- In the front should be :
- A picture
- Text
- A progressing timer (which displays the current status of the video)
- Last, but not least, audio should be added to the video or vice versa as the video is supposed to end when the audio ends to round things up.
As this all is pretty complex editing for a python programme, I don’t know which library(ies) to use.. If someone has a solution / idea please reply !