Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (67)

Sur d’autres sites (10295)

  • Watch My Hero Academia Heroes Rising Full Movie Online FREE #2019

    6 juillet 2020, par sarahlburke58

    Watch My Hero Academia : Heroes Rising (2018) Full Movie Online HD Streaming Free Unlimited Download, Watch My Hero Academia : Heroes Rising (2018) Full Series 2017 Online Movie for Free DVD Rip Full HD With English Subtitles Ready For Download.

    


    Watch My Hero Academia : Heroes Rising Full MOVIE HD ►► [1]

    


    Watch My Hero Academia : Heroes Rising (2018) Movie Free 2017 1080p, 720p, BrRip, DvdRip, CapRip, Telesyc, High Quality, My Hero Academia : Heroes Rising (2018) Movie Online, My Hero Academia : Heroes Rising (2018) Movie Full HD Free.

    


    Watch My Hero Academia : Heroes Rising (2018) Online Download My Hero Academia : Heroes Rising (2018) Movie, My Hero Academia : Heroes Rising (2018) Movie Full Online, My Hero Academia : Heroes Rising (2018) Movie Online BluRay, My Hero Academia : Heroes Rising (2018) Movie Full HD Streaming, My Hero Academia : Heroes Rising (2018) Movie Free 2017 Torrent, My Hero Academia : Heroes Rising (2018) Movie Download HD Streaming Free.

    


    Title : My Hero Academia : Heroes Rising
Release : 2019-12-20
Runtime : 104 min
Genre : Animation, Action
Stars : Daiki Yamashita, Nobuhiko Okamoto, Kenta Miyake, Ayane Sakura, Aoi Yuki, Yuki Kaji

    


    Overview : Class 1-A visits Nabu Island where they finally get to do some real hero work. The place is so peaceful that it's more like a vacation … until they're attacked by a villain with an unfathomable Quirk ! His power is eerily familiar, and it looks like Shigaraki had a hand in the plan. But with All Might retired and citizens' lives on the line, there's no time for questions. Deku and his friends are the next generation of heroes, and they're the island's only hope.

    


  • FFMPEG - Merge 2 Files (video_video), with TC and watermark

    11 juin 2020, par Felipe Silva

    I need to merge two video files, add a watermaker and a timecode burned in the video.

    



    I see this (by @llogan :)

    



    ffmpeg -i video.mp4 -i audio.mp3 -i watermark.png -filter_complex "[0:v:0]drawtext=fontfile=/usr/share/fonts/TTF/DejaVuSansMono.ttf:timecode='01\:23\:45\:00':r=25:x=(w-text_w)/2:y=h-text_h-20:fontsize=20:fontcolor=white:box=1:boxborderw=4:boxcolor=black[bg];[1][bg]overlay=W-w-10:H-h-12:format=auto[v]" -map "[v]" -map 1:a -shortest output.mp4


    



    But I can't apply for two videos, because of the map. Can someone help me, please ? My last attempt was :

    



    ffmpeg -i [video1] -i [video2] -i [image-overlay] -filter_complex "[0:v:0]drawtext=fontfile=/Windows/Fonts/arial.ttf: timecode='00\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=0xccFFFF@1: fontsize=85: box=1: boxcolor=0x000000@0.2[bg];concat=n=2:v=1:a=1[vv][a];[vv][2:v]overlay=0:0[v];[vv][bg]overlay=0:0" -map "[v]" -map "[a]" -c:v libx264 -b 2000k -preset fast -c:a aac [output file]


    


  • Laravel FFMPEG Add HLS Video Watermark issue

    6 juin 2020, par Jefriiyer S

    I'm using "pbmedia/laravel-ffmpeg" : "^7.0" in "laravel/framework" : "^7.0" , I want to add water mark to the HLS video, Here is the example given in the github repo https://github.com/pascalbaljetmedia/laravel-ffmpeg

    



    FFMpeg::open(['video.mp4', 'video2.mp4'])
    ->export()
    ->addFilter(function(ComplexFilters $filters) {
        // $filters->watermark(...);
    });


    



    But It's not have enough information, Here is the working example everyware in the internet

    



    addFilter(function ($filters) {
            $filters->watermark($watermarkPath, [
                'position' => 'relative',
                'bottom' => 50,
                'right' => 50,
            ]);
        })


    



    But the watermark method has 2 more required parameters in the library

    



    addFilter(function (ComplexFilters $filters) {
            $filters->watermark($in,$watermarkPath,$out, [
                'position' => 'relative',
                'bottom' => 50,
                'right' => 50,
            ]);
        })


    



    What should I pass for $in and $out
Here is the full code which I have

    



    $low = (new X264('aac'))->setKiloBitrate(100);
$mid = (new X264('aac'))->setKiloBitrate(250);
$high = (new X264('aac'))->setKiloBitrate(500);


       FFMpeg::fromDisk('local')
        ->open($this->video->path)
        ->exportForHLS()
        ->addFilter(function (ComplexFilters $filters) {
            $filters->watermark(null,public_path('watermark.png'),null, [
                'position' => 'relative',
                'bottom' => 50,
                'right' => 50,
            ]);
        })
        ->addFormat($low)
        ->addFormat($mid)
        ->addFormat($high)
        ->save("public/videos/{$this->video->id}/{$this->video->id}.m3u8");


    



    By passing null I can't able to see any watermark , If I remove those nulls , I'll have error

    



    Please look at the required parameters in watermark function under ComplexFilters

    



    Please look at the required parameters in watermark function under ComplexFilters,
Thanks :).