Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (66)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (14638)

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

    


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

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