Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8056)

  • FFMPEG merge one audio and one video file [duplicate]

    29 mars 2020, par Karl R

    I am trying to get this to work for a few hours and am having no luck. I have two .mp4 files - one is audio and one is video. All I want to do is merge them into one file so the audio and video play together. I know I am close but I keep getting stuck on "Cannot find a matching stream for unlabeled input pad 1 on filter Parsed_hstack_0".

    My command I am using is :

    .\ffmpeg.exe -y -i .\camera.mp4 -i .\screen.mp4 -filter_complex hstack output.mp4

    Output of each file type is attached.

    Thank you for your help - we found a bug in a screen recording app on our AMD laptops and this will helps us with a temporary fix. I work at a tech college and we are scrambling to get online videos going for the students to learn remotely.
    pic1
    pic2

  • RTP Packets to test RTSP Server

    6 mars 2019, par stackjohnny

    I am new to this domain, but I successfully setup RTSP server in one of the container and when running

    ./rtsp_media_server -l 8445 -s stream1 -p 8000

    it is working fine. where 8445 is the expose port, stream1 is the stream name and 8000 is the intake port

    URL : rtsp://<host>:8445/stream1</host>

    But I need RTP packets to be sent to port 8000 so that I can test the my rtsp media server perfectly.

    Do any online rtp server provides the same ?

    I can see many sample rtsp media server is there like rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov , which I can test in VLC media player. but not sure how to do with RTP packets.

    Please correct me if my understanding is wrong and guide me.

  • PHP - How to track video conversion progress - Stop ffmpeg process in PHP web [closed]

    21 mai 2022, par Mursaleen Ahmad

    I am working on a PHP web project where multiple users will be able upload and convert their videos bitrate using ffmpeg. And if users go to watch page before full conversion then "Video is being processed" message should show up.&#xA;I am using jQuery with AJAX and a watch link generated to watch online.

    &#xA;

    1) How can I find the process is still running and show "Video is being processed" message to the users ?

    &#xA;

    2) How can I stop ffmpeg process ?

    &#xA;

    3) How can I get conversion percentage (how much video is converted) from file (as multiple users are using the site so can't work on single file named output.txt) ?

    &#xA;