
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (61)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (...)
Sur d’autres sites (9587)
-
subtitles dont show ffmpeg issue
30 septembre 2016, par Bilal ShahidI’m using below command to burn subtitles to a video. I have successfully done it via terminal in ubuntu. I’ve used this library in android android library and I’ve run the same command to do the same task but it wont work the command executes successfully but in result video I don’t see any subtitle.
fmpeg -i /home/s9iper1/a.mp4 -vf "subtitles=/home/s9iper1/titles.srt:force_style='Fontsize=24,PrimaryColour=&H0000ff&'" -c:a copy /home/s9iper1/out.mp4
-
How to increase or decrease volume for multi input in ffmpeg ?
15 mars 2023, par Ali AzmoodehI have an input file, I want the volume of the input file to increase when the loop reaches index 7, otherwise the volume is small, I need to merge it in these, Is it possible to set a filter for each input ?


createPhoneNumberAudioWithEncrypt('09030207892');

function createPhoneNumberAudioWithEncrypt(mobilNumber) {

 mobilNumber = mobilNumber.split('').reverse();

 let mergedVideo = ffmpeg();

 for (let i = 0; i < mobilNumber.length; i++)
 if (i >= 7)
 mergedVideo = mergedVideo.input(`./sound/${mobilNumber[i]}.mp3`);
 else
 mergedVideo = mergedVideo.input(`./sound/${mobilNumber[i]}.mp3`);

 mergedVideo.mergeToFile('./mergedAudio.mp3');

}



-
ffmpeg - extract multi-line subtitles
31 juillet 2021, par Schalk BurgerI'm extracting a subtitle using :


ffmpeg -i input.mkv -map 0:4 outsub.ass


It works fine at first glance :


Dialogue: 0,0:02:46.24,0:02:47.88,Default,,0,0,0,,y que eliminamos por la orina.
Dialogue: 0,0:02:48.20,0:02:50.24,Default,,0,0,0,,ツソQuテゥ le has estado preguntando
Dialogue: 0,0:02:50.28,0:02:52.88,Default,,0,0,0,,Como tenemos aquテュ
Dialogue: 0,0:02:52.92,0:02:55.76,Default,,0,0,0,,que es una enciclopedia,
Dialogue: 0,0:02:55.80,0:02:58.56,Default,,0,0,0,,cuando comemos espテ。rrago



The problem is that the actual subtitle is this :


screenshot showing two lines of subtitle


It seems there are two lines of subtitle and only one gets extracted. There is a missing line after :


Dialogue: 0,0:02:48.20,0:02:50.24,Default,,0,0,0,,ツソQuテゥ le has estado preguntando


Can anyone help me ? Besides a solution, maybe educate me in why the two lines of sub are so high above each other ? Almost like a couple of new lines in between.


Kind regards and thanks in advance.