Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (50)

  • 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 (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (6486)

  • Batch concation of multiple videos files (Bash)

    4 janvier 2024, par pops64

    I have clips from multiple different scenes in the same folder I was wondering if any one had a script that groups clips belonging to each scene together than pass them into ffmpeg for a concatenation and transcode. The file name pattern is uniform. And ids are separated by a hyphen with only the scene id being unique. I am currently doing this scene by scene in FFmpeg batch av converter but any help automating this in bash or powershell would be greatly appreciated. I just can't figure out where to start

    


    {name_of_scene}-{scene_id}-{clip_id}-{resolution}.{filetype}


    


  • ffmpeg Streaming from second X to icecast2

    26 août 2020, par Chris-The-Tuner

    i try to stream a MP3 file to icecast2 with it's native bitrate (320 kbit/s).

    


    In first i had issues with ffmpeg reading way to fast, this was solved with the -re parameter.
Before the stream would run way to fast.
Now i think -re is my problem, i want to stream the file from second X (using -ss) to end but still in real time.
I use it like this :

    


    ffmpeg -re -i input.mp3 -ss 19 -f mp3 icecast://source:pass@127.0.0.1:8000/mount


    


    But now it reads the first 19 seconds and then starts streaming, but i would wish to start instantly on second 19, no delay (or at least not full 19 seconds)

    


    I hope there is a way, i'm probably overseeing something, a tip would be really helpful.
Thanks in advance, Chris

    


  • Thumbnails from S3 Videos using FFMPEG - "No such file or directory : '/bin/ffmpeg'"

    28 juin 2022, par Nico

    I am trying to generate thumbnails from videos in an S3 bucket every x frames by following this documentation : https://aws.amazon.com/blogs/media/processing-user-generated-content-using-aws-lambda-and-ffmpeg/

    


    I am at the point where I'm testing the Lambda code provided in the documentation, but receive this error in CloudWatch Logs :

    


    enter image description here

    


    Here is the portion of the Lambda code associated with this error :

    


    enter image description here

    


    Any help is appreciated. Thanks !