Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (46)

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

  • 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

Sur d’autres sites (8014)

  • ffmpeg - Speed up rtsp stream conversion to mp4

    9 janvier 2019, par miejscov

    I want to ask if it is possible to speed up converting RTSP stream to mp4 file ?
    For example 1 minute segment takes 1 minute to download and convert, that’s too long. What depends on speed of conversion ?

    My ffmpeg command looks like this :

    ffmpeg -ss 05:05:00 -i rtsp://test:test@0.0.0.0:000/vod/camera -t 00:01:10 -s 720x480 -c:v libx264 -acodec copy "destination.mp4"
  • How to make a PAN faster/slower speed with FFmpeg ?

    27 février 2019, par Duty Alex

    I have an image named "input.png" 1920x7580 px and i want to make a PAN across it from top to bottom. My current code is :

    ffmpeg -loop 1 -i input.png -vf crop=1920:1080:0:n -frames:v 6500 out.mkv

    My video duration with this default speed is 4:20 (260 second). The scrolling down speed is 25 pixels per second.

    How i increase/decrease this speed without changing the video FPS (25 fps) ? For example my video duration to be 3 minutes.

    Thank you !

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