
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (37)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7596)
-
Live stream RTMP/RTSP player without using webview (WOWZA server) on Android
2 septembre 2016, par SweetWisher ツI am developing an Android application in which I want to publish as well as stream a video...
What I want is :
-
My app records a video and that video is sent to the server
-
The recorded video will be streamed live to another Android device at the same time..
I have completed the first task using javac and ffmpeg. I am stuck in the second task. I have searched a lot to stream the video from the server, but I didn’t succeed. I don’t want to use WebView and play the video in it. I want an RTMP player. This task has been completed in iOS... I want the same for Android. What is some link to fulfill my task ?
P.S. :
I am using wowza server and RTMP stream. I would like to stream RTMP video (.flv)... If no solution is available, I would like to switch to RTSP and for that also, need a working link to follow..
Now I have switched to RTSP player [with wowza server] as I have not found an RTMP player without webview. How do I fix this issue ?
-
-
Firefox does not support mkv format videos, need to convert video to mp4
21 mai 2021, par sambhav jainI am making a screen recorder app that records your screen and upload the video to the
s3 bucket
. the video is in mpv format. themkv format
is supported by chrome, edge but not by firefox. Firefox supports the mp4 format. so how do I convert the video to mp4 format for firefox ?videofile
is inmkv
which needs to be converted tomp4


handleUpload() {
 for (let i = 0; i < this.files.length; i++) {
 this.awsUploadService
 .getSignedUrlS3(this.files[i]["name"], this.files[i]["type"])
 .subscribe(
 ({ url, keyFile }) => {
 this.awsUploadService
 .uploadfileAWSS3(url, this.files[i]["type"], this.files[i])
 .subscribe(
 (data) => {
 if (data["type"] === 1) {
 this.files[i]["progress"] =
 (data["loaded"] / data["total"]) * 100;
 }
 if (data["type"] === 4) {
 this.files[i]["isUploadCompleted"] = true;
 this.files[i][
 "uploadLocation"
 ] = `https://${environment.S3_BUCKET_NAME}.s3.${environment.S3_Region}.amazonaws.com/${keyFile}`;
 }
 },
 (error) => {
 this.files[i].isUploadCompleted = false;
 throw error;
 }
 );
 },
 (error) => {
 this.files[i].isUploadCompleted = false;
 throw error;
 }
 );
 }
 }



-
Python threading module on windows after session logout
1er décembre 2013, par e271p314I wrote a code which starts to record screen capture from the second it identifies mouse movement until it identifies the mouse didn't move for a predefined time (10 seconds).
In python, on windows, how to wait until mouse moves ?
If, I'm logged in to the session the code works fine, i.e. it starts and stops on time and records the screen capture. But, if I logout, I expect the script to identify that the mouse doesn't move and stop recording. Instead, the code doesn't stop and when I login again (long after the 10 seconds passed), the screen capture (from the previous session) keeps running, yelling the rt buffer is full and it keeps running until I close the cmd console even I expect it to work for 10 seconds (at least when I'm logged in). Any idea what is the issue ? I feel like it is something between the threading module and the session logout but I could be completely wrong about this.