
Recherche avancée
Autres articles (87)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6176)
-
Need help to change working ffmpeg command to overlay instead of concatenate two audio files at specific position
7 mars 2019, par lukistarBy asking another question here, I got working code
ffmpeg -i input.mp3 -i second.mp3 -filter_complex "[0:a]atrim=end=10,asetpts=N/SR/TB[begin];[0:a]atrim=start=10,asetpts=N/SR/TB[end];[begin][1:a][end]concat=n=3:v=0:a=1[a]" -map "[a]" output
The code inserts second.mp3 into the input.mp3 at 10 seconds.
But now I need to overlay second.mp3 into the input.mp3 starting at 10seconds.
In other words I need playing input.mp3 and after 10 seconds I need start playing second.mp3 simultaneously.The code I have been given keeps the params of input.mp3 and changes everything about second.mp3 to match input.mp3.
Could you help me altering the command I have to do the overlay...
-
How to watch or download periscope live streams from start ?
10 septembre 2019, par SanchitI am trying to figure how watch/download a periscope livestream from it’s starting point. The app doesn’t let go back more than 2 minutes so I tried downloading as someone told me it downloads from beginning but it didn’t. It started from the current time.
I tried running :
youtube-dl https://www.pscp.tv/w/b_7KWDFyYVFaeFhCTXhaanp8MXluS09Sd05QRFZ4Uuj5klcOLvuiNqQPC2PcorcMlZOwD3uZyIP7o-UXVYNi
I get
https://prod-fastly-ap-south-1.video.periscope.tv/Transcoding/v1/-/chunk_1563350917969725824_36817_a.ts?type=live
https://prod-fastly-ap-south-1.video.periscope.tv/Transcoding/v1/-/chunk_1563350926386273572_36818_a.ts?type=live -
ffmpeg how to start encoding at live point (not from beginning)
9 avril 2021, par JintorIs there a way with ffmpeg to start encoding at "live point" (in other words at last encoded frame...)


let met explain : 2 ffmpeg process


[1] x11grab that is being generated that started a 2:00 pm.... and still continue live (I don't want to stop and continue encoding live)


[2] restream the [1] but at live point (at where it is encoding now) not from start...


If [2] is being triggered at 2:15 pm, it will load the first frame of [1] (start to encode from 2pm)


but I want that it load the last few frames of [1] as a starting point (2:15pm)...


I know that I could
ffmpeg -i -ss
but I have to specify a x number of seconds after-ss
...

is there a better way ?