Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (112)

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

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (29360)

  • Revision fa20a60f0d : Speed 5 : use non-rd mode for key frame coding. Metrics on RTC set go down by 1

    25 mars 2015, par Marco

    Changed Paths :
     Modify /vp9/encoder/vp9_speed_features.c



    Speed 5 : use non-rd mode for key frame coding.

    Metrics on RTC set go down by 1.5% on average.
    Key frame encoding time goes down by factor of 5.

    Change-Id : Ia83acc55848613870e5ac6efe7f3d904d877febb

  • Speed up a video without audio to 2x with FFmpeg in android

    12 décembre 2020, par VoidMain

    I am working on a project in which I need to speed up a mute video. I did a little digging around and found the following command.

    



    ffmpeg -i input.mkv -filter:v "setpts=PTS/2" output.mkv 


    



    Tried to use it in android as follows.

    



    new String[]{"-y", "-i", inputFileAbsolutePath, "-filter_complex", "setpts=PTS/2", "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4", fileOutput};


    



    It doesn't even show anything in the Logcat.

    



    I have also tried a few other solutions but no luck.
Any help would be appreciated.
Thanks.

    


  • ffmpeg - Progressive audio speed / asetpts atempo

    16 octobre 2022, par Martin Lonský

    I'm trying to figure out with progressive audio speed/acceleration.

    


    In this case, atempo won't work due to speed factor as number instead of expression.

    


    While the asetpts doesn't work in combination with adelay.

    


    1.
audio1 - apply progressive PTS, eg : curveExpr * PTS ; apply adelay

    


    audio2 - unchanged

    


    2.
amix both audios together

    


    3.
concat resulted audio with video stream

    


    The problem I'm facing is, that audio1 even after asetpts is still unchanged after adelay. I've tried to set atempo and it would work, but doesn't meet the requirement of acceleration then.

    


    Any idea in there ?
Thank you