Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (7592)

  • Need available FFMPEG transition effect commands for single video file in android ?

    16 juillet 2019, par Gopinathan B

    I am able to produce Fade In & Fade Out transition effect for single video file. I am fail to get other transition effects for single video. Some of the transition commands are not correct. There is no official documentation to do.

    This will fade in video for 5 sec in start.

    "-y", "-i", masterVideoFile!!.absolutePath, "-acodec", "copy", "-vf", "fade=t=in:st=0:d=5", outputFile.absolutePath

    This will fade out video for 5 sec in end.

    "-y", "-i", masterVideoFile!!.absolutePath, "-acodec", "copy", "-vf", "fade=t=out:st=$finalTime:d=5", outputFile.absolutePath

    I need video to transition from Right to Left, Left to Right, Top to Bottom & Bottom to Top and start playing video afterwards.

  • ffmpeg random images from video but in order

    28 novembre 2011, par RussellHarrower

    Ok, so I am using linux, and I have ffmpeg working, coding videos and making the image

    But what I would like is to make ffmpeg make up to 10 images from the video.

    I was wondering how I would do this. currently I use the following for images.

    //execute ffmepg to get picture
       exec("/usr/bin/ffmpeg -vframes 1 -ss ".$time_in_seconds." -i converted_vids/".$name.".".$type." video_images/".$name."_%02d.jpg -y 2> log/image_".$name.".txt");
  • Adding a rotating effect on an image using ffmpeg ? [closed]

    5 mai 2024, par Garry

    I'm trying to overlay an image on a video, and add subtle rotating effects for that image, left, right, left right, and so on. (see pictures) The rotation works, however the edges are always very jagged and bad quality.
Is there a way to improve my filters, or is there a better approach that I can use, without jagged edges ?

    


    This works, overlays the image.png and applies to rotating effect :

    


    ffmpeg -loop 1 -i image.png -i video.mp4 -t 10 -filter_complex "[0:v]scale=720:720:flags=lanczos,fps=25,format=rgba,rotate=0.05*sin(2*PI*t/4):c=black@0:ow=round(iw*1.5):oh=round(ih*1.5)[rotated];[1:v][rotated]overlay=(W-w)/2:(H-h)/2:shortest=1" -c:v libx264 -crf 16 -preset veryslow -c:a copy -y output.mp4

    


    But the edges turn out to be very jagged :

    


    jagged edges

    


    jagged edge

    


    jagged edge