Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (62)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7816)

  • Getting 500 error when uploading video to twitter from android app

    11 juillet 2016, par Sakshi

    I am trying to compress video using FFMPEGAndroid library using the following command.

    {"-y" ,"-i", file.getAbsolutePath(),
    "-c:v", "libx264", "-crf", "20",
    "-aspect", "1:1",
    "-pix_fmt", "yuv420p",
    "-c:a", "aac", "-strict","experimental",
    "-b:a", "96k", "-ac", "2", "-ar", "44100",
    "-preset", "ultrafast",
    "/storage/emulated/0/output.mp4"}

    When I try to share the video on Twitter from my android app, I get 500 Internal Server Error. I am able to share same video on Facebook and on my app. I have been read a lot of forums and FFMPEG manuals but no luck.

  • how to change the fps of video during playback of video without restarting video

    8 juin 2018, par Mahek Delawala

    I want to change the fps of video at run time (during the playback of video) without restarting or pausing using ffmpeg. I searched about it in the internet but I am not able to get the command which can change the fps directly without restarting the video but i found ffmpeg command which can create a new file with modified fps as shown below.
    ffmpeg -y -r 20 -i input_file -r 45 output_file
    Is it possible to change fps of video during run time using ffmpeg command ? If yes please provide me the command if not how can i change using c code. Please help me in this issue as early as possible.
    Thank you.

  • I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. ffmpeg [closed]

    5 décembre 2019, par SON PHAN VAN

    My input is a 1920x1080 video. I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. What should I do with the ffmpeg command.