
Recherche avancée
Autres articles (67)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (6801)
-
Need To Laravel Scenario php [closed]
28 juillet 2022, par Yns KzyI need to This Scenario PHP Code ;


STEPS ;


1.Select Laravel "SELF" Menu, Drag&Drop Upload any Video(mp4,mpeg,avi) (Process Bar [Circular] ---FRONTEND---


2.Backend (ffmpeg or any encoder) process converting video to VP9 .webm (Process Bar-Frontend)


3.Delete temporary file first upload Video(mp4,mpeg,avi)


4.Unique name created .webm vp9 file (Backend) (CUZ COMPLEXITY) and .webm to HLS .m3u8 converting playlist.(Backend)(Also, need to Unique .m3u8 name.


5.(Frontend) Finish Message %100- Completed.


- 

- This file created. this file below form(Upload subtitle) .vtt file. —FRONTEND— drag&drop .vtt file (Process Bar) [Circular] and %100 Completed.




7.And this two file combine any video player.("SELF"=For choosing the first Option.) this video player subtitle options. and quality select (144p,720p,1080p etc.)


8. In The Last Stage ; After These Conversions Have Been Made
1(One) Video File(.m3u8 ; Multiple .webm files.) .m3u8 a playlist file. Will Be Played In A Video Player With Multiple Language And Video Quality Options.


**This "Self" Menu Is Currently Working.But Mediocre. (Video Player) When Other Menus Are Opened, A Different Form Appears.(YOUTUBE,VIMEO,VDOCIPHER etc.) "SELF" Form Does Not Change. For Your Information. PANEL is "LARAVEL". Thank You. Best Regards.




-
FFMPEG Invalid Option [duplicate]
16 août 2022, par misteralexanderPer the suggestion from mklement0 I have shortened the output here to just the relevant code and error. Additionally, as he pointed out, I have changed how I am constructing the arguments (now passing as an array).


Additionally, the comment from kesh, I removed the "-filter_complex" and changed to just several "-map" 's.


$TEMPDIR = "E:\MediaConversions\BitLadder"
$FOLDER = 'White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO'
$OUTPUTDIR = $TEMPDIR + '\' + $FOLDER

# Mux the 8 Bitrate Ladder steps into a single file, with a common audio stream
$STEPS = @(Get-ChildItem -Path $OUTPUTDIR -Name)
$INPUT_FILES = @()
$MAP = @()
$COUNT = 0
ForEach ($STEP in $STEPS){
 $INPUT_FILES += ('-i', "$STEP")
 $MAP += ('-map ' + "$COUNT" + ':v', '-map ' + "$COUNT" + ':a') 
 $COUNT++
}

$OPTIONS = ('-' + "$INPUT_FILES", "$MAP")
#$OPTIONS
D:\Applications\ffmpeg\bin\ffmpeg.exe "$OPTIONS" -f matroska "E:\MediaConversions\White.Boy.Rick.2018_MultiStreamTest_AAC.H264.mkv"



But Sadly, I still get the same frustrating error :


Unrecognized option '-i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP1.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP2.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP3.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP4.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP5.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP6.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP7.mp4 -i White.Boy.Rick.2018.1080p.WEB-DL.H264.AC3-EVO_STEP8.mp4 -map 0:v -map 0:a -map 1:v -map 1:a -map 2:v -map 2:a -map 3:v -map 3:a -map 4:v -map 4:a -map 5:v -map 5:a -map 6:v 
-map 6:a -map 7:v -map 7:a'.
Error splitting the argument list: Option not found



-
How to get ffmpeg to output hls with multiple resolutions ? [closed]
23 septembre 2022, par CamHartI'm trying to switch my ffmpeg command from outputting a single mp4 to outputting hls files for 1080p, 2k, and 4k.


Here's the mp4 command that currently works :

ffmpeg.exe -y -framerate 50 -i 1.%09d.jpg.blurred.png -framerate 50 -i 2.%09d.jpg.blurred.png -i input.mp4 -filter_complex "[0:v]v360=equirect:equirect:yaw=180 [s1],[1:v]v360=equirect:equirect:yaw=90 [s2],[s1][s2]overlay [ovr1],[ovr1]scale=3840:1920 [ovr2],[2:v]scale=3840:1920 [ovr3],[ovr3][ovr2]overlay" -c:v libx264 -crf 17 -r 50 -profile:v high -level 5.1 -pix_fmt yuv420p -preset faster -g 100 -movflags faststart -c:a copy output.mp4



I've tinkered around over and over again, but I can't seem to get it to work. I'm still quite confused by
-map
and-var_stream_map
. Here's what I have currently :


ffmpeg.exe -y -framerate 50 -i 1.%09d.jpg.blurred.png -framerate 50 -i 2.%09d.jpg.blurred.png -i input.mp4 -filter_complex "[0:v]v360=equirect:equirect:yaw=180 [s1],[1:v]v360=equirect:equirect:yaw=90 [s2],[s1][s2]overlay [ovr1],[ovr1]scale=3840:1920 [ovr2],[2:v]scale=3840:1920 [ovr3],[ovr3][ovr2]overlay [src],[src]split=2[v1][v2],[v1]scale=1920x1080 [v1out],[v2]scale=2560x1440 [v2out]" -map [v1out] -c:v:0 libx264 -crf 17 -r 50 -preset veryfast -g 100 -sc_threshold 0 -keyint_min 100 -map [v2out] -c:v:0 libx264 -crf 17 -r 50 -preset veryfast -g 100 -sc_threshold 0 -keyint_min 100 -map [src] -c:v:0 libx264 -crf 17 -r 50 -preset veryfast -g 100 -sc_threshold 0 -keyint_min 100 -map 2:a:0 -c copy -f hls -hls_time 2 -hls_playlist_type vod -hls_flags independent_segments -hls_segment_type mpegts -hls_segment_filename stream_%v/data%02d.ts -master_pl_name master.m3u8 -var_stream_map “v:0,a:0 v:1,a:0 v:2,a:0” stream_%v/stream.m3u8



Any chance anyone can help me out ? Basically I need to take "src" (the stream named that in the command) and produce hls output for it at 1080p, 2k, 4k resolutions.