Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (39)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • 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

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

  • 2559x1450 image sequence won't convert to yuv420p video file, vlc cant play yuv444p10le

    24 mars 2019, par Sacha

    I upscaled a movie with waifu2x (from 1920x1088 to 2559x1450)
    i now have an image sequence that i need to convert to an mp4
    when i try -pix_fmt yuv420p, it says that it cannot devide the width by 2
    so i tried yuv444p10le, but yuv444p doesnt play on anything else than ffplay.

    so, how do i convert my img sequence into a video vlc can play ?

    ive also tried this : -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2"
    but that doesnt work either

    and i had to convert to 2559x1450 cause otherwise it would stretch, (it took 90 hours to convert all the frames so i cant just do it over again)

    i want the output to be a 2559x1450 video file that is playable on vlc.

  • How can I play an overlay video in a loop using ffmpeg-python ?

    3 septembre 2021, par kup

    I want to play an overlay video in infinite loop until the video ends. I have tried the below command, but this doesn't seem to work :

    


    video = video.overlay(overlay_file, x=0, y=0, eof_action='repeat')
(
    ffmpeg
    .output(video, "out.mkv")
    .run()
)


    


  • How to play an overlay video in loop using ffmpeg-python ?

    30 juillet 2021, par kup

    I want to play an overlay video in infinite loop until the video ends. I have tried the below command but this doesn't seem to work :

    


    video = video.overlay(overlay_file, x=0, y=0, eof_action='repeat')
(
    ffmpeg
    .output(video, "out.mkv")
    .run()
)