
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (50)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 ;
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (6713)
-
How to extract video with single audio channel from a ts video contain multiple audio channels in one aac audio stream ?
11 avril 2014, par StackOverFlowMeteorI have a video file named "Video.ts" that contain 4 audio languages (English, Chinese, xxx, xxx).
I want to output a video file, say "Video1.ts" (or even converted to "Video1.MP4" directly..) that contain the original video with English audio in mono ONLY.The ffmpeg shown the original aac audio channels were in the one stream "0:1"
Can anyone show me the ffmpeg command line to do it ? Thanks a lot !C:\ffmpeg_test>ffmpeg.exe -i Video.ts
Input #0, mpegts, from 'Video.ts':
Duration: 00:01:11.55, start: 1.000000, bitrate: 1866 kb/s
Program 1
Stream #0:0[0x281]: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(tv,
bt470bg), 640x360 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1[0x201]: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, 4.0, fltp
, 120 kb/s -
How to create HLS video with subtitle using ffmpeg ?
13 octobre 2022, par kakashi333I need to convert mp4 video and subtitles and convert it to m3u8.


ffmpeg -i video.mp4 -i subtitle0.vtt -i subtitle1.vtt -c copy -c:s webvtt -c:s webvtt
 -map 0:v -map 0:a -map 1 -map 2 
 -c:v libx264 -crf 22 -c:a aac -ar 48000 
 -filter:v:0 scale=w=480:h=360 -maxrate:v:0 600k -b:a:0 500k 
 -map "1:0" "-metadata:s:s:1" "language=heb" "-metadata:s:s:1" "handler_name=Hebrew" "-metadata:s:s:1" "title=Hebrew" 
 -map "2:0" "-metadata:s:s:2" "language=eng" "-metadata:s:s:2" "handler_name=English" "-metadata:s:s:2" "title=English" 
 -var_stream_map v:0,a:0 stream_%v.m3u8
 -preset fast -hls_list_size 10 -threads 0 -f hls 
 -hls_time 3 -hls_flags independent_segments 
 -hls_segment_filename res/data%06d.ts
 -master_pl_name livestream.m3u8
 -y livestream-%v.m3u8



I've tried a lot of variants but all not working.
This is the error from the last one


At least one output file must be specified



-
Video transcode and codec issue
8 août 2020, par maddogandnorikoI'm converting some old videos to play on my Roku via a dlna server. I'm trying to understand the MP4 container better to optimize conversions. I have an ogm video :


Duration: 01:00:38.22, start: 0.000000, bitrate: 1056 kb/s
Stream #0:0: Video: mpeg4 (XVID / 0x44495658), yuv420p, 576x324 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 23.98 tbn, 23.98 tbc
Stream #0:1(English): Audio: aac, 48000 Hz, stereo, fltp, 74 kb/s
Stream #0:2(Japanese): Audio: aac, 48000 Hz, stereo, fltp, 73 kb/s
Stream #0:3(English): Subtitle: text



From what I understand, MP4 container can contain MP4 video and aac audio. I used


-c:a copy -c:v copy



And it worked, but the video won't play. Obviously something's wrong. What I don't understand is why, the video looks like it's MP4 and the audio is aac. My guess is it's the Xvid but why ?


Thank you.
Todd