
Recherche avancée
Autres articles (63)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (...)
Sur d’autres sites (5812)
-
How to execute ffmpeg video cut command in a loop for same input video ? [duplicate]
12 juillet 2021, par Anas AnsariI found that this command is used for cut a specific clip using ffmpeg


command = -ss startMs -y -i inputVideoPath -t endMs -vcodec mpeg4 -b:v 2097152 -b:a 48000 -ac2- ar22050 outputPath


This command is executed in background thread and works fine if used one time for cutting one clip only


I want to use this command to trim a video into multiple parts and for that I need to use this command in loop and in background thread
but whenever i try to run my app, my screen freezes and after sometime app gets restart without completing the trimming process


How should I do this ?
Ways I have tried :


- 

- Using new Thread
- Using ExecutorService
- I didn't tried AsyncTask as its deprecated








I am using this library for FFmpeg https://github.com/tanersener/ffmpeg-kit/tree/development/android


-
FFMPEG pull only english audio unless no english then copy all audio
21 mars 2021, par LeeThis is doing my nut in !! lol


I am trying to pull only english audio unless there is no english in which case i just want to leave it as it is - I am converting to ac audio as well and copying subs. Put yeah i just want to say pull only english unless there is no english in which case copy all audio.


So I am using this -copy_unknown -map v -map m:language:eng ? -c:v copy -c:s srt -ac 2


So it works and pulls english if there is one, but if there isn't it looses all audio.


Help lol


The copy unknown doens't work either - unknown language audio gets left out too


Thanks
Chezzy


-
Script to bulk merge audio and a video+audio file
19 février 2021, par Jason SmithI have a folder with 52 video+audio files (m3u8 extn)
and 52 audio files (different language)(m4a extn)
The names of the files are same
abcde.m3u8(video)
abcde.m4a(that other language audio only file)


i want to merge them so i have a single file Video+auido1+audio2
and i don't to lose any quality in the merging process


What would be the bash/ffmpeg command to do so ?


Thanks a lot