Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (30)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4182)

  • Speed up and reverse a video with a single command ?

    4 août 2016, par Eduardo Perez

    I am using Ubuntu 16.04. I know with FFMPEG you can use this command to reverse a video.

    ffmpeg -i [input] -vf reverse -af areverse [output]

    Now, the thing is I found somewhere that you can use this command to speed up the video.

    ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" [output]

    So, I tried this command to speed up and reverse the video, but it didn’t work since complex filters can’t be used together with -vf or -af.

    ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" -vf reverse -af areverse [output]

    What command do I need to use to get FFmpeg to speed up and reverse the video, without decompiling it ? I’m using the latest version of FFmpeg.

  • How to profile compression speed for a h264 encoder

    25 mai 2018, par Dean

    I’m using nvenc to compress in h264 a video stream. I now have a kinda-working low latency implementation for game streaming purposes but I’m struggling to get reliable profiling results. I’ve been trying to stream a video (so everything is predetermined) via my encoder to the clients in controlled network conditions (e.g. locally). I tried to time average compression times per frame but they’re highly volatile and the numbers I get aren’t that meaningful.

    How are low latency streaming encoders tested for performances ?

  • How to change video speed using fluent-ffmpeg (PTS ?)

    13 mai 2018, par conley wang

    there are so many commands about how to change video speed using ffmped command, but i don’t know how to use fluent-ffmpeg to achieve the same command, maybe using filter ? can anyone tell me ?

    ffmpeg -i TheOrigin.mp4 -vf  "setpts=0.25*PTS" UpTheOrigin.mp4