Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (46)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (9510)

  • How to display name and phone number of a student as dynamic watermark (randomly floating on entire screen) in videos of a paid online video course ?

    22 mai 2020, par Arjun

    I wish to make a Learning Management System using PHP-MySQL and wish to put videos from my computer or embed YouTube videos on it.

    



    Videos will be displayed to only those students who have paid for the course.

    



    I want to show their name and phone number (which they'll be giving during Sign Up) as a dynamic watermark floating randomly on all the videos of that course to prevent screen capturing of the video.

    



    How to do it and how to call those Name and Phone Number values from the MySQL database ?

    


  • format string in text of ffmpeg.drawtext(),i want the frame number to be 0001 , currently it is 1

    7 novembre 2022, par Đạt Nguyễn

    i want the frame number to be 0001 , currently it is 1

    


    ff = ffmpeg.drawtext(ff_drawtext,text ='%n',start_number=1,fontfile='C :/Windows/Fonts/Arial.ttf',fontcolor="white",x='w-(w/1.8)',y='h-(h/30)',fontsize="28",escape_text=False)

    


    i use : text =":04n".format(%'n) not unsuccessful

    


    enter image description here

    


  • Cross fading 2 videos segments using ffmpeg when number of frames are not known before hand

    5 avril 2016, par Hero Roma

    I am a newbie trying to cross fade 2 videos using ffmpeg and the stackoverflow answer. But in my case I do not know the length of the video or the number of the frames. I want to start the fade out in the first video in the last 5 frames and fade in the first 5 frames. I am able to do the fade in on the second video but I cannot figure out how to do the fade out in the last 5 frames when I don’t know the duration or the number of frames.

    The "-i" option is supposed to be able to extract that information but I cant seem to pipe it to the next block there.

    ffmpeg -i 1.mp4 -i 2.mp4 -f lavfi -i color=black -filter_complex \
    "[0:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va0];\
    [1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va1];\
    [2:v]scale=960x720,trim=duration=9[over];\
    [over][va0]overlay[over1];\
    [over1][va1]overlay=format=yuv420[outv]" \
    -vcodec libx264 -map [outv] out.mp4