Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (65)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4165)

  • Detect FFmpeg installation and Version

    6 mars 2016, par Aaron

    I’m writing a PHP script that converts uploaded video files to FLV on the fly, but I only want it to run that part of the script if the user has FFmpeg installed on the server.

    Would there be a way to detect this ahead of time ? Could I perhaps run an FFmpeg command and test whether it comes back "command not found ?"

  • How to Play Smooth 4K Video with FFplay ? [closed]

    14 mai 2020, par Matan Marciano

    Im trying to play 4K video with ffplay and the video is not smooth.

    



    Video File :

    



    



    Hardware :

    



      

    • Dell OptiPlex 7070 Micro (8 Cores, 8GB RAM, GPU : Intel Corporation UHD Graphics 630)
    • 


    • Samsung U28E590D, 4K Screen
    • 


    • DisplayPort to HDMI Cable
    • 


    



    Software :

    



    



    The FFplay command I used is : ffplay -vcodec h264_qsv -i input.ts

    



      

    • Notes :
    • 


    • During the playing, my CPU usage is around 25% (according to 'top' command)
    • 


    • FFplay logs indicate on many frame drops
    • 


    • I also tried VLC and MPV player's- VLC looks bad also. MPV player looks better but still not smooth.
    • 


    



    So, its looks like my hardware is good enough for 4K playing. What am I missing ?
How can I play smooth 4K video via FFplay ?

    


  • Black overlay appears when merging a transparent video to another video

    13 juin 2012, par RakeshS

    This is what I have done so far :

    Command to create a transparent PNG image :

    convert -size 640x480 -background transparent -fill blue \
    -gravity South label:ROCK image1-0.png

    Command to create a transparent video :

    ffmpeg -loop 1 -f image2 -i image1-0.png -r 20 -vframes 100 \
    -vcodec png -pix_fmt bgra mov-1.mov

    (as per this post) - I expect this video to be a transparent video.

    Command to overlay a video with another :

    ffmpeg -i final-video.mov -sameq -ar 44100 \
    -vf "movie=mov-1.mov [logo];[in][logo] overlay=0:0 [out]" \
    -strict experimental final-video.mov

    Above commands works perfect and I have not faced any problem, but I don't get what I expect which is kinda watermarking effect, I want mov-1.mov to be transparent with final-video.mov.

    Questions :

    1. Is there any way to verify if the generated video is transparent ? other than merging ?
    2. Not sure why the above mov-1.mov is not transparent when it is merged with final-video.mov, any info to solve this problem would be great.

    Please help.