Recherche avancée

Médias (91)

Autres articles (50)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

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

Sur d’autres sites (8719)

  • HTML5 Media and Accessibility presentation

    23 février 2010, par silvia

    Today, I was invited to give a talk at my old workplace CSIRO about the HTML5 media elements and accessibility. A lot of the things that have gone into Ogg and that are now being worked on in the W3C in different working groups – including the Media Fragments and HTML5 WGs – were also (...)

  • ffmpeg command slow zoom in according to duration

    12 septembre 2018, par Zeeshan Sheikh

    I have a command that converts the image into video with soft zoom out effect, command is :

    > ffmpeg -loop 1 -i vide.mp4 -vf "zoompan=z='1.5-on/duration*0.2':d=325" -t 30  output.mp4

    Now i want soft zoom in effect rather than zoom out, can somebody help to achieve result ?

    Example If I define -t 120 then picture should be zoom in for two minutes. softly

    Thanks in advance

  • Best solution to automatically enrich a video stream with dynamic overlay (text, images, ...)

    17 novembre 2016, par hg.m

    In my company, we are currently looking for a solution to enrich a given video stream (which is being broadcasted via RTMP) from a remote webcam with dynamic information, such as current date/time, special measure values which are available on a server or the most recent entries in a database. Basically we want to achieve a simple, dynamic on-screen display as, for example, TV stations are using. The modified stream should then be restreamed, for example to be viewed in VLC Player or on YouTube.

    So far, I came up with the following ideas :

    • Using OBS with some own scripts and plugins - that’s disadvantageous because we would like to run the solution on a high-network performance server 24/7 without a GUI. Basically I’d need a fully command-line based version of OBS.

    • Using ffmpeg : I know that there are text filters available, but they are mainly static (or periodically polling a file with text) and don’t allow for any design adjustments other than font, font size and color. It would be great if there was some way of overlaying a Webkit browser view onto the stream, because this would allow us to design the overlays in HTML5 and CSS and using WebSocket technology for updating the data.

      • The overlay could be captured with PhantomJS, but how should we unify it with the stream and would it be fast enough to render 30 FPS ?

    Are there additional (preferably open source) tools we could use ? What would be the best strategy to implement this without buying expensive TV broadcasting software ?