
Recherche avancée
Autres articles (29)
-
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 : (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (2277)
-
Can't loop playlist ffmepg with external url
28 avril 2021, par timimiGood morning all,


I can do a loop using ffmpeg for the files in my directory.


like playlist.txt :


file 'my_fyluye.mp4'



file 'myeo.mp4'
file 'mug.mp4'


It' s work I can get the loop easily.


But if I want to use external links ffmpeg only reads the first line of the playlist, it does not continue the list. Example of my playlist.txt


file 'https://r1---sn-5ualdn7e.googlevideo.com/videoplayback?expire=1619638623&ei=_2SJYN3KKMzy4QTMzbj4Bw&ip=23.94.91.216&id=o-ALZin764dFH7FJPmh10EzG57SyRFIwljoGf3v3zaQbxv&itag=22&source=youtube&requiressl=yes&mh=XW&mm=31%2C29&mn=sn-5ualdn7e%2Csn-5uaezn6y&ms=au%2Crdu&mv=u&mvi=1&pl=24&vprv=1&mime=video%2Fmp4&ns=Kjonv2DWvYezBQb-zPj3a7YF&cnr=14&ratebypass=yes&dur=133.584&lmt=1609949086441136&mt=1619616550&fvip=1&fexp=24001373%2C24007246&c=WEB&txp=2316222&n=DpFZNXGyJewRYQ3&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Ccnr%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgbWI6XzY0DilugfkeGHJKq9BFWM8PHwi-Yo9MS6ms0S8CID1qxC4kBzmklTDSaAJzkDoxjx79xawPBVk8V7WNbxOe&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl&lsig=AG3C_xAwRAIgWfO_hjWpjdjxdJAqMqfRk_3H9tWrph9NtVZxHOgXELsCICzbwhlMc4YtcEDexJmk_vTQHQuzPQBkZjoGLkiE8Y3O'





I do not know why.


Thanks for help you


-
How to convert .m3u8 playlist with #EXT-X-DISCONTINUITY to .mp4 using ffmpeg
8 septembre 2021, par NiharikaI have a .m3u8 playlist. Which looks something like this


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:11
#EXTINF:10.3200,
segment_1_10.ts
#EXT-X-DISCONTINUITY
#EXTINF:5.0800,
segment_3_40.ts
#EXT-X-DISCONTINUITY
#EXTINF:5.1200,
segment_30_76.ts
#EXT-X-DISCONTINUITY
#EXTINF:5.1200,
segment_2_10.ts
#EXT-X-DISCONTINUITY
#EXT-X-ENDLIST



I want to convert this to .mp4 file. I tried
ffmpeg -i input.m3u8 -c copy output.mp4
But it gives me warning like this.

Non-monotonous DTS in output stream 0:0; previous: 918501, current: 421200; changing to 918502. This may result in incorrect timestamps in the output file.


As per my knowledge this is because "ffmpeg do NOT merge streams separated by #EXT-X-DISCONTINUITY in m3u8" .


How can I convert m3u8 to mp4 then ??


-
How to download videos from .mpd playlist file
7 septembre 2023, par Aaditya KumarI have a .mpd video file :-




I want to download videos from this link but unsuccessful




I have tried to download using youtube-dl but also get unsuccessfull




youtube-dl https://zee5vod.akamaized.net/drm1/elemental/dash/TV_SHOWS/ZEE_TV/March2021/15032021/Seamless/BQC_Kumkum_Bhagya_CS_Ep1787_Seamless_15032021_hi_a2808b31106f106303f084b9943d5986/manifest.mpd





Also tried this




youtube-dl -f greatvideo+greataudio https://zee5vod.akamaized.net/drm1/elemental/dash/TV_SHOWS/ZEE_TV/March2021/15032021/Seamless/BQC_Kumkum_Bhagya_CS_Ep1787_Seamless_15032021_hi_a2808b31106f106303f084b9943d5986/manifest.mpd



But unsuccesfull


Please help someone..