
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 (95)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (11721)
-
How to disable non-1st Audio Streams/Tracks in FFmpeg for mp4 files
16 décembre 2016, par DipeshMy end goal is to create a single FFmpeg command that will convert my h264.DTS.mkv files to a format that is compatible with my AppleTV, whilst preserving the original quality.
I’m almost there, however I have not been able to figure out how to disable streams/tracks.
So far I have got :
ffmpeg -i FILE \
-y -strict experimental \
-map 0:0 -map 0:1 -map 0:1 -map 0:1 -map 0:2 \
-c:0 copy -c:1 aac -ac:a 2 -c:2 ac3 -ac:a 6 -c:3 copy -c:4 mov_text \
OUTPUTThis produces an output file that looks like :
- H264 video track (enabled) [copied from original]
- AAC 2 channel audio track (enabled)
- AC3 6 channel audio track (enabled)
- DTS 6 channel audio track (enabled) [copied from original]
- subtitle track (enabled)
The problem is I need it to look like :
- 1 H264 video track (copied from original) (enabled)
- 1 AAC 2 channel audio track (enabled)
- 1 AC3 6 channel audio track (disabled)
- 1 DTS 6 channel audio track (copied from original) (disabled)
- 1 subtitle track (enabled)
Hence I need to know how I can disable the non-1st Audio Streams/Tracks.
From what I have read, this is part of the track header atom at the location "tkhd.flags". But I have not been able to figure out how to set this via command line arguments.
Any help would be greatly appreciated.
-
OpenShot export no sound [closed]
25 juin 2021, par OneiroiVersion : openshot-2.5.1-6.fc34.noarch


Imported mp4 file with audio track.


Export to mp4 format, AAC audio, lacks audio track verified with ffmepg and VLC (audio track is absent in exported file).


I have already tried :


- 

- Right click video track, set Enable audio to ON (from auto).
- Edit -> Preferences -> Preview, set output device from Default to specific
device






Verified imported clip has audio even by right click track -> Display -> show waveform


How can I export to mp4 format, with audio ?


At the moment presuming "simple" option I am not seeing, perhaps ?


Thanks in advance.


-
Does not work -hls_playlist in ffmpeg in the -dash section
18 mars 2019, par jidckiiI will use this assembly ffmpeg
https://hub.docker.com/r/jrottenberg/ffmpeg/ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 6.2.1 (Alpine 6.2.1) 20160822I’m trying to do dash and hls at the same time.
In the documentation from here http://ffmpeg.org/ffmpeg-all.html#dash-2
the key is :
-hls_playlist hls_playlist
Generate HLS playlist files as well. The master playlist is generated
with the filename master.m3u8. One media playlist file is generated for
each stream with filenames media_0.m3u8, media_1.m3u8, etc.those. mpd and m3u8 must be created at the same time.
Running :
ffmpeg -re \
-analyzeduration 20000000 \
-i udp: //239.0.0.1: 1234? overrun_nonfatal = 1 \
-map 0 \
-c copy \
-f dash \
-min_seg_duration 5000000 \
-window_size 10 \
-extra_window_size 10 \
-remove_at_exit 1 \
-hls_playlist 1 \
-use_timeline 1 \
-use_template 1 \
-vtag avc1 \
-atag mp4a \
cam01.mpdand get an error :
Unrecognized option 'hls_playlist'.
Error splitting the argument list: Option not found`without the
-hls_playlist
everything works correctly ...What could be the problem ?