Recherche avancée

Médias (2)

Mot : - Tags -/photoshop

Autres articles (42)

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

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

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

    


  • 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 Merge two videos into one with side-by-side same quality output

    25 avril 2023, par Filip Kafo Kaučiarik

    I'm already working on project with 3d video and I have a problem, I got left and right channel of video and I need to merge them into side by side. I already read some blogs about this problem and I got this code :

    


    ffmpeg -i avatar35l.avi -vf "movie=avatar35r.avi [in1]; [in]pad=1920*2:1080[in0]; [in0][in1] overlay=1920:0 [out]" avatar35sbs.avi


    


    It works, but there is significant quality loss and I need the quality of the output video to be the same as the input video : 30fps, 1080p, same length. I'm new to ffmpeg and i need a concrete example of that.

    


    Can anybody help me ?