Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (61)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5953)

  • building static ffmpeg library for Android under windows 7

    29 mai 2013, par Zhenya

    I know that this has been asked several times, but I've never found any clear step by step and conclusive answer.

    How can I compile ffmpeg for Android, under windows 7 ?
    What are the steps ? Is there a project or wiki on the internet where to find this ?

    All I've found are steps to run under Ubuntu, or purely linux, but nothing to generate a static library for android, to be build under windows 7.

    Thanks

  • Find files that have been only once modified in last 24 hours [duplicate]

    4 janvier 2020, par Vijay Chandra

    I’m using this command to get all modified files in the last 24 hours on Ubuntu.

    find -type f -name "*.mp4" -mtime -1 -printf "%f\n"

    How can I modify this to detect that a file has been modified more than a single time ? And if so, ignore it.

    I need this to create a watermarking script which will find the latest files within 24 hours and save the list to a text file and with the help of this text file, I use ffmpeg to watermark the videos and move them to the original location.

    If I do this, the find command considers the new updated video as a modified file and adds the watermark repeatedly.

    My code is attached below :

    #!/bin/bash
    find -type f -name "*.mp4" -mtime -1 -printf "%f\n" >> filename='/home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/file.txt'
    all_lines=`cat $filename`
    for item in $all_lines; do  
     cp $item /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp
     ffmpeg -i $item -i watermark.png -filter_complex "[1][0]scale2ref=w='iw*30/100':h='ow/mdar'[wm][vid];[vid][wm]overlay=(main_w-overlay_w):(main_h-overlay_h)"
    -y /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/$item
    done
  • AutoKill process on Centos 6.5 Using WHM

    30 janvier 2014, par Will R.

    I have 3gp files that are uploaded to my server via php.
    From there FFmpeg will convert the 3gp files to mp3 files.
    Sometimes the 3gp files are corrupt and FFmpeg will hang on that file and max out that core until the process is killed manually via WHm using the process manager.

    There have been times when several of these files bring the server to a grinding halt because ffmpeg has maxed out all cores.

    Is there a plugin or script or something I can install on the server that can auto kill any process that exceeds a certain amount of time and 90% cpu ?

    Centos 6.5 Using WHM I have root access.