Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (28)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6265)

  • Heroku ffmpeg buildpack

    20 octobre 2015, par Manuel Quintanilla

    Putting together the video upload section in my rails app and am having some issues with video play on mobile phones. Im using

    paperclip-av-transcoder, s3 and  Heroku

    On my laptop I can visit the page and see the video thumbnails and play the videos only because I have previously installed ffmpeg to my machine.

    Remotely on Heroku I’ve set the appropriate buildpacks for ffmpeg and have run push heroku master to install the buildpacks - Now when I visit the page on my mobile iPhone I don’t get a thumbnail but when I play the video it plays - on the other hand when I visit the page on my Android phone I don’t get a thumbnail and the video dose not play but I can upload mp4s on Android.

    Check out my set up here : Heroku ffmpeg buildpacks for video uploads

    It seems I don’t have the proper buildpack setup or some other heroku setting with ffmpeg.

    Any suggestions ? Thanks in advance !

  • ffmpeg_concat is not running from shell_exec() function ?

    13 août 2018, par ahmadlatif1084

    command is running on CLI on Linux.

    ffmpeg-concat -t circleopen -d 750 -o /var/www/html/testing_video/huzzah.mp4 /var/www/html/testing_video/1.mp4 /var/www/html/testing_video/2.mp4 /var/www/html/testing_video/3.mp4 2>&1

    Perfectly working on CLI. But when i used with the shell_exec command from a php file it gives an error.

    failed to create OpenGL context
    at module.exports (/usr/lib/node_modules/ffmpeg-concat/lib/context.js:24:11)
    at module.exports (/usr/lib/node_modules/ffmpeg-concat/lib/render-frames.js:19:21)
    at module.exports (/usr/lib/node_modules/ffmpeg-concat/lib/index.js:53:32)
    at

    Anyhow i debug the code function is calling and the parameters width and height is passing but still returning null.

    Node version:v8.11.3

  • Can I Store the Output of FFmpeg to a Different PC [closed]

    22 mars 2024, par Justin

    I have a question about storing the output of a screen recording using FFmpeg.

    


    Currently, I want to use the :

    


      

    • ffmpeg -video_size 1024x768 -framerate 25 -f x11grab -i :0.0 output.mp4
    • 


    


    command to grab a screen recording on a remote Linux machine, where I am connecting to the Linux machine using ssh on my PC.

    


    I was wondering, would it be possible to save output.mp4 onto my local machine after ending the screen recording instead of on the remote Linux machine ? Or to a different location instead of the Linux machine in general ?

    


    I am new to Linux and using ssh, so I any advice is greatly appreciated !

    


    So far when using this command, I have been able to change the path location for the output file, but am not able to figure out how to get it to save to a location other than the remote Linux machine.