Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (65)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (12219)

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

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