Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (87)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (16882)

  • FFMpeg is writing a matplotlib animation with diminishing quality

    3 mars 2017, par Bryan Stafford

    I am trying to create a bunch of animations that follow the paths National Hockey League teams travel during the current season. Currently, my animation looks like this.

    As you can see, the animation begins decently sharp but within 2 seconds the quality bottoms out and everything is grainy.

    The relevant code is this :

    ani = animation.FuncAnimation(fig, update, frames=len(all_x + 20),
                                 interval=75, repeat=False)
    filepath =  map_team + '.mp4'
    ani.save(filepath, writer='ffmpeg', fps=30)
    plt.tight_layout()
    plt.show()

    I have chosen FFMpeg as my writer because I hope to put about 30 graphics online and the MP4 format keeps each file around 1.5MB. If there’s a way to keep the graphics sharp, with low file sizes, and able to be uploaded onto Imgur, I would love to do that with my project.

    Thanks.

  • How to install ffmpeg and an app together on a Mac ?

    30 juin 2016, par Patrick

    I have an electron app built and packaged for macOS in a .app file. The app requires ffmpeg to be installed on the end-user’s computer to be used.

    Currently, I’ve had to manually install ffmpeg on each end-user’s computer to run the app.

    I want to distribute the app online with an easy installer for both ffmpeg and the app. I’ve seen .dmg files which allows you to drag the .app into the applications folder easily, but the ffmpeg dependency is still absent in the installation process.

    How can I install ffmpeg and the app together on a mac ?

    Perhaps including the ffmpeg build in the .app content is a solution as well.
    This may not be possible though because a relevant question mentions there are only abstractions of the ffmpeg CLI instead of something that can directly use ffmpeg.

  • Get Pid Ffmpeg On Centos With Bash Script

    2 mai 2020, par Abdullah Al-Habsyi

    I was created SH script n run with cron for 3 hours. but i want update live cctv real time if not online, i want grep pid for each sh i have. if pid exist nothing to do, if pid not exist run command this.

    



    #!/bin/bash
#IP 192.168.19.6

ping -c 1 -q 192.168.19.6 >&/dev/null

if [ $? -eq 0 ]; then
    rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
    rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
    ffmpeg -stimeout 87000000 -err_detect aggressive -fflags discardcorrupt \
    -rtsp_transport tcp -i "rtsp://admin:12345@192.168.19.6/media/video1" \
    -vf scale=320:-1 -c:v libx264 -pix_fmt yuv420p -preset:v ultrafast \
    -hls_time 10 -hls_list_size 10 -hls_delete_threshold 10 -hls_flags delete_segments -f hls \
    "/var/www/cctv/public_html/video/ri-2/simpang.m3u8" \
    -progress -stats

else
    rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
    rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
fi