Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (49)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le 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 (8773)

  • Compress the video quality in Laravel [closed]

    12 juillet 2021, par Hasan Redsignal

    I am working to compress the video quality using the Laravel FFMpeg package. I want to compress the quality of video like 1080 to 480 but I cannot understand how I do it in Laravel. Please let me know how I do it.
Thanks !

    


  • FFmpeg : With 1 720p and 1 1080p video, how can I upscale the 1st one to 1080p and hstack them in one command ?

    4 juillet 2021, par YousufSSyed

    This is the command I have right now, but it only works for videos with the same height :

    


    ffmpeg -i "video 1.mp4" -i "video 2.mp4" -c:a copy c:v h264_amf -filter_complex "hstack,format=yuv420p" "Output video.mp4" 


    


      

    • video 1.mp4 is the 720p one
    • 


    • video 2.mp4 is the 1080p one
    • 


    


    I need to keep the audio for the 1st video but not the 2nd one, the 2nd one doesn't have audio. I tried adding [0:v]scale=-1:1080; before hstack but that doesn't work.

    


  • Can I make this FFMPEG animation smoother ?

    21 mai 2021, par mrmaker12345

    I have a basic ffmpeg command which zooms an images from 150% to 100% and overlays onto a stretched and blurred version of itself. All works great, except the zoom effect is very shaky. Is there any way to make this animation smoother ?

    


    ffmpeg -y -loop 1 -i image.jpg -filter_complex "[0:v]scale=1920:1080,boxblur=10:10,setsar=1[bg];[0:v]scale=-1:(ih*1.5)-(ih*1.5)*n/900:eval=frame[fg];[bg][fg]overlay=x=(W-w)/2:y=(H-h)/2[out]" -map "[out]" -t 10 -r 60 "out.mp4"