Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (27)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (3992)

  • Library for capturing and streaming desktop ?

    20 juin 2012, par zukes

    Does any one know a library apart from (VLC & FFmpeg) which is capable of capturing desktop as well as streaming it over UDP or Http and it should consume less cpu.
    Because my experience with ffmpeg is good as far as i am doing offline processing but it becomes very bad when i start streaming & and in every case FFmpeg takes entire cpu for processing thats the only reason i hate it ....

  • How to specify the audio path for ffmpeg and how to conduct a silence removal using ffmpeg

    15 octobre 2020, par Leo

    I wish to conduct a silence removal for wav files.

    


    import ffmpeg
inPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d.wav"
outPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d_trimed.wav"
ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath


    


    Error occurred.

    


      File "", line 3
    ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath
                   ^
SyntaxError: invalid syntax


    


    How should I assign the path ?

    


    The question is that why we set the threshold to a negative value ?

    


  • ffmpeg, how to avoid audio drift when muxing audio and video

    1er mai 2023, par Monkeybus

    I use scrcpy to mirror my Android screen to my PC. I have to capture the audio via bluetooth.

    


    The result is two files. One .mkv and one .aac. They are both of equal length, possibly a second or two out.

    


    I mux them together, but the audio always drifts.

    


    I mux them together with the following command, $show is the bash variable for the video file.

    


    ffmpeg -i $show.mkv -ss -00:00:02 -i $show.aac -c:v copy -c:a copy -shortest $show.muxed.mkv


    


    The -ss sets the audio start time. I generally have to play around with this on a vid by vid basis. I can generally match the audio and video perfectly at the beginning of the file, but the audio will always drift over the course of the video.