Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (49)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

Sur d’autres sites (5979)

  • Keeping the video stream alive when audio stream is missing

    26 avril 2020, par Core7s

    I have a current nginx setup where I am overlaying an audio stream on a video stream. The volume on the original video stream is dialed down so that the overlaid audio can be heard. This is achieved using ffmpeg as follows :
exec_push ffmpeg -i rtmp://localhost/original-video/{key} -i rtmp://localhost/overlaid-audio/{key} -filter_complex "[0:0]volume=0.03[lv]; [1:0]volume=0.97[hl]; [lv][hl] amix=inputs=2 [a]" -map 0:1 -map "[a]" -c:v copy -c:a aac -f flv rtmp://localhost/video-audio/mixed;

    



    My problem is, if the audio stream is not running the output doesn't work either. I want this setup to work whether the audio stream is active or not inactive. If the audio is inactive the original-video should get pushed to output without any change.

    



    Is there any filter or a conditional that can be used in the above setup to achieve that behavior ?

    


  • Ffmpeg : add a short audio at the end of a mp4 video

    24 août 2018, par user3409988

    What would be the command to add a short audio at the end of a video mp4 ?

    Let’s say the overlay audio lasts 3 sec. My video last 26 min.

    At 25:50 min (video duration - 10 sec) the overlay audio starts. The original audio of the video is silenced for 3 sec meanwhile the overlay audio runs. Then the original video sound comes back after 3 sec.

  • Best video format for video processing and converting to mp4

    29 août 2014, par Max Grigoriev

    I may have video in selected format and I should make some video changes - add logo to the whole video as example and then convert to mp4. Right now original file is in h.264/mp4 format too. As I understand to add logo original file should be decoded to frames then logo should be added and then frames should be encoded to H.264 and packed to mp4. Since I’m newbie in video processing maybe there’s a raw video format which removes decoding stage and it saves time and cpu ?

    Thanks