Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (91)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (14426)

  • ffmpeg not working with filenames that have whitespace

    18 mai 2021, par cmw

    I'm using FFMPEG to measure the duration of videos stored in an Amazon S3 Bucket.

    &#xA;

    I've read the FFMPEG docs, and they explicitly state that all whitespace and special characters need to be escaped, in order for FFMPEG to handle them properly :

    &#xA;

    See docs 2.1 and 2.1.1 : https://ffmpeg.org/ffmpeg-utils.html

    &#xA;

    However, when dealing with files whose filenames contain whitespace, ffmpeg fails to render a result.

    &#xA;

    I've tried the following, with no success

    &#xA;

    ffmpeg -i "http://s3.mybucketname.com/videos/my\ video\ file.mov" 2>&amp;1 | grep Duration | awk &#x27;{print $2}&#x27; | tr -d&#xA;ffmpeg -i "http://s3.mybucketname.com/videos/my video file.mov" 2>&amp;1 | grep Duration | awk &#x27;{print $2}&#x27; | tr -d&#xA;ffmpeg -i "http://s3.mybucketname.com/videos/my&#x27;\&#x27; video&#x27;\&#x27; file.mov" 2>&amp;1 | grep Duration | awk &#x27;{print $2}&#x27; | tr -d&#xA;ffmpeg -i "http://s3.mybucketname.com/videos/my\ video\ file.mov" 2>&amp;1 | grep Duration | awk &#x27;{print $2}&#x27; | tr -d&#xA;

    &#xA;

    However, if I strip out the whitespace in the filename – all is well, and the duration of the video is returned.

    &#xA;

  • ffmpeg not working with filenames that have whitespace

    1er avril 2017, par cmw

    I’m using FFMPEG to measure the duration of videos stored in an Amazon S3 Bucket.

    I’ve read the FFMPEG docs, and they explicitly state that all whitespace and special characters need to be escaped, in order for FFMPEG to handle them properly :

    See docs 2.1 and 2.1.1 : https://ffmpeg.org/ffmpeg-utils.html

    However, when dealing with files whose filenames contain whitespace, ffmpeg fails to render a result.

    I’ve tried the following, with no success

    ffmpeg -i "http://s3.mybucketname.com/videos/my\ video\ file.mov" 2>&amp;1 | grep Duration | awk '{print $2}' | tr -d
    ffmpeg -i "http://s3.mybucketname.com/videos/my video file.mov" 2>&amp;1 | grep Duration | awk '{print $2}' | tr -d
    ffmpeg -i "http://s3.mybucketname.com/videos/my'\' video'\' file.mov" 2>&amp;1 | grep Duration | awk '{print $2}' | tr -d
    ffmpeg -i "http://s3.mybucketname.com/videos/my\ video\ file.mov" 2>&amp;1 | grep Duration | awk '{print $2}' | tr -d

    However, if I strip out the whitespace in the filename – all is well, and the duration of the video is returned.

    Any help is appreciated !

  • Failed to run the ffmpeg binary : The process "ffmpeg exceeded the timeout of 60 seconds

    6 janvier 2024, par Sufian The Geek

    I am using FSPOSTER wordpress plugin to share videos on instagram as a reels and story. I have installed wordpress on amazon aws ec2 t2.micro. FsPoster required FFmpeg plugin to work with the videos.

    &#xA;

    Whenever I share the video, I get error after 60 seconds. There are some videos that are easily getting shared as a reel and story. I looked into the plugin code and changed every single timeout function value to 300 seconds including php.ini file. There are some libraries like symfony in the plugin, I also changed the timeout 60 sec to 300 seconds. Restarted the server and all but still getting the error.

    &#xA;

    &#xA;

    Failed to run the ffmpeg binary : The process "'ffmpeg' -v error -y -i '/opt/bitnami/wordpress/wp-content/uploads/2024/01/videoWater-First-18.mp4' -vf 'crop=w=1280:h=720:x=0:y=0' -metadata:s:v rotate="" -f mp4 -c:v libx264 -preset fast -crf 24 -strict -2 -c:a aac -b:a 96k '/tmp/fs_65994ac0ddf8b.mp4'" exceeded the timeout of 60 seconds.

    &#xA;

    &#xA;

    I am using bitnami wordpress on ec3 aws t2.micro that has 1 vcpu and 1 GB ram. I also switched to 2 vcpu and 8 gb ram but still this timeout issue.

    &#xA;