Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (111)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP 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 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP 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 (15340)

  • ffmpeg - Replace one word audio in video at different specific timeline [duplicate]

    17 décembre 2019, par Siddharth

    How can i replace one word (newyork to be replaced by california) throughtout the video where speaker says "Newyork". I want that "Newyork" word to be removed from the audio (while keeping video intact) and insert "california" throughout the video at different places.

    I have an audio file where speaker says "California" which i want to replace with "newyork" word.

    How can i do that using FFMPEG ?

  • ffmpeg : conversation fails

    25 août 2021, par Pat Cummins

    I'm trying to silence a portion of audio in the input audio file. If I provide audioFilter value inside the arguments, the redaction works, however, if I try externalizing it as a variable it doesn't. Help me to understand what's wrong with my code ??

    


    Code Works

    


    let inputFile = fs.createWriteStream('input.wav');
inputFile.on("finish",() =>{spawnSync("ffmpeg",["-i",`input.wav`,"-af",`volume=enable='between(t,0,25)':volume=0,`,'output.wav',]{ stdio: "inherit" })});


    


    Code Fails

    


    let inputFile = fs.createWriteStream('input.wav');
let var = [0,25];
let audioFilter= `volume=enable='between(t,${val[0]},${val[1]})':volume=0,`;

inputFile.on("finish",() =>{spawnSync("ffmpeg",["-i",`input.wav`,"-af",`${audioFilter}`,'output.wav',]{ stdio: "inherit" })});


    


    Error :

    


    Metadata:
encoder         : Lavf57.71.100
Duration: 00:04:22.97, bitrate: 128 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 8000 Hz, mono, s16, 128 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (pcm_s16le (native) -> pcm_s16le (native))
Press [q] to stop, [?] for help
[AVFilterGraph @ 0x599c480] No such filter: ''
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #0:0
Conversion failed!


    


  • Add 2 watermark with scale2ref 40 percent width of video and timeout using FFmpeg

    3 septembre 2020, par Arun Maurya

    Add 2 watermark with scale2ref 40 percent width of video and timeout using FFmpeg

    


    timeout for the top right corner (first 8 sec) then the bottom right corner till the end time.

    


    ffmpeg -i 1597739850_368007908.mp4 -i artistsharleen.png -i artistsharleen.png -filter_complex "[1][0scale2ref=w='iw*40/100':h='ow/mdar'[wm][vid];[vid][wm]overlay=10:40:enable='between(t,0,8)'"[v1];[v1][2]scale2ref=w='iw*40/100':h='ow/mdar'[a][b];[b][a]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable='gt(t,8)[v2]" -map "[v2]" -map 0:a 17780739871599156232.mp4

    


    I'm able to place 2 watermarks with keyframe

    


    ffmpeg -i video.mp4 -i image2.png -i image2.png -filter_complex "[0][1]overlay=10:10:enable='between(t,0,8)'[v1];[v1][2]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable='gt(t,8)'[v2]" -map "[v2]" -map 0:a output.mp4

    


    but my images are not getting scaled as per video resolution, that's why i want to integrate scale2ref in this command

    


    Hope someone also faces this problem, can help me.