Recherche avancée

Médias (0)

Mot : - Tags -/longitude

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

Autres articles (74)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (4480)

  • encode 3 different mp4 video to a standard, then join them without encoding [closed]

    10 novembre 2023, par Joe Cook

    I've found many topics on this but none seem to work fully. when I encode them, they look like specs are equal, but when I join them they stutter and freeze.

    


    outputa.mp4 2304/1536    9.7 frame/rate   security camera no audio
outputb.mp4 1140/720   29.91 frame/rate   phone portrait
outputc.mp4 1920/1080  29.91 frame/rate   phone landscape


    


    padding looks good, and resolution is the same, joining stutters/freezes

    


    'ffmpeg\bin\ffmpeg -y -i outputc.mp4 -vf "[in]scale=iw*min(2304/iw\,1536/ih):ih*min(2304/iw\,1536/ih)[scaled]; [scaled]pad=2304:1536:(2304-iw*min(2304/iw\,1536/ih))/2:(1536-ih*min(2304/iw\,1536/ih))/2[padded]; [padded]setsar=1:1[out]" -c:v libx264 -c:a copy temp\output3.mp4'


    


    padding looks good, and resolution is the same, framerate same, joining stutters/freezes

    


    'ffmpeg\bin\ffmpeg -y -i output3.mp4 -vf "scale=2304:1536:force_original_aspect_ratio=decrease,pad=2304:1536:(ow-iw)/2:      (oh-ih)/2,setsar=1:1,fps=fps=30,settb=AVTB,setpts=PTS-STARTPTS" -vcodec libx264 -pix_fmt yuv420p outputc.mp4'


    


    when I join it stutters and freezes

    


    'ffmpeg -f concat -safe 0 -i list.txt -c:v copy -c:a copy output.mp4'

    


  • There are audio gaps when I join multiple .ts files into a single .mp4 file

    2 juin 2020, par woopwoop399

    After I merge multiple .ts files into a single .mp4 file, when I play this file, I hear short gaps in audio. The gap happens always at same places, but has only about 50% chance of happening, it feels like video player doesn't manage to decode something in time. This gap happens when I play the file with mpc-hc videoplayer, but doesn't happen with vlc player. I'd switch, but mpc-hc worked flawlessly for every file I opened so far for years, so I think the .mp4 file is somehow malformed.

    



    I used this command ffmpeg -f concat -safe 0 -i mylist.txt -c copy sm22413936-ts.mp4, all necessary files are here https://files.catbox.moe/9cl0pm.zip

    



    I asked about this here previously https://superuser.com/questions/1520894/there-are-audio-gaps-when-i-join-multiple-ts-files-into-a-single-mp4-file , but first solution required reencoding, and my solution caused desync really noticeable on long videos.

    



    I suspect that this .mp4 is muxed wrong or something, maybe I need to remux it somehow.

    


  • fftools/ffmpeg_enc : move handling final frames to video_sync_process()

    15 avril 2023, par Anton Khirnov
    fftools/ffmpeg_enc : move handling final frames to video_sync_process()
    

    This code properly belongs there.

    • [DH] fftools/ffmpeg_enc.c