
Recherche avancée
Autres articles (35)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (9276)
-
Is there a way using FFmpeg or software that would allow a user to upload a video with audio muted, but download the video with the audio rencoded ?
10 octobre 2013, par user2868184Here is the background :
I am looking to start a video sharing site that would allow artists to upload their original dance choreography. The problem is that while the choreography is original, the music most likely won't be. I would like the user to be able to upload the video with the sound muted, but once it's downloaded the sound would return. I am looking to host this on a WordPress site but is there a way using FFmpeg or a plug-in that would accomplish this ? I am a very novice programmer but I would like to to be able to suggest a solution to a plugin developer.
This would also allow me to display and play multiple videos on a page without having all of the audio overlap one another. Thanks in advance for your help !!!
-
Revision 102853 : Paquet et plugin.xml doivent avoir le même numéro de version car il s’agit ...
13 février 2017, par spip.franck@… — LogPaquet et plugin.xml doivent avoir le même numéro de version car il s’agit du même plug
-
Stream video content through Web API 2
12 juin 2020, par FaNIXI'm in the process of working out what the best way is going to be to do the following :



I have a bunch of CCTV footage files (MP4 files, ranging from 4MB-50MB in size), which I want to make available through a web portal. My first thought was to stream the file through Web API, so I found the link below :



http://www.strathweb.com/2013/01/asynchronously-streaming-video-with-asp-net-web-api/



After implementing a sample project, I realised that the example was based on Web API 1, and not Web API 2.1, which is what I'm using. After doing some more research, I got the code to compile with WebAPI 2.1. I then realised that if I want to do streaming I cannot use MP4 files, there is a fair amount of technical detail behind this, so here is the thread :



Best approach to real time http streaming to HTML5 video client



It seems for this to work I need to encode my MP4 files to something like WebM, but that is going to take too much time. Icecast (http://icecast.org/), which is a streaming server, but I haven't tried it out yet, again not sure if this is what I need to do.



Now that I think of it, I actually don't need live streaming, I just need to allow the client to play the video file through their browser, perhaps using HTML5 video element ? The thing is, my application needs to work on IOS as well, so I reckon that means I cant even encode my MP4 to FLV and just use flash.



All I really need is to have all my video clips as thumbnails on a web page, and if the client clicks on one, it begins to play ASAP, without having to download the entire file. Think of the "Watch Trailer" feature on imdb.com. Simply just play a video file, thats really what I want. I don't need LIVE streaming, which is what I think WebM is for ? Again, not sure.