
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (53)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans 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 (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (8187)
-
Naming file output moviepy ffmpeg
21 avril 2020, par WitnessI am trying to name clips from a moviepy ffmpeg output based on text in dataframe columns.
I can create the clips but am having trouble with the naming as Im not sure how to loop through the list 
and add it to the output file name.



example data frame



import pandas as pd

data = [["Park","Road",4, 10], ["Road","Street", 80, 95], ["Street","Park",120, 132]] 
df = pd.DataFrame(data, columns = ["Origin", "Destination","Start", "End"])

print (df)




Origin| Destination| Start | End



0 | Park | Road | 4 | 10



1 | Road | Street | 80 | 95



2 | Street| Park | 120| 132



Id like the output file to show the Origin and Destination text



videoParkRoad1



videoRoadStreet2



videoStreetPark3



the code I have at the moment



filename="D:\video" + str(i+1) + ".mp4"




returns



video1



video2



video3



Hope this makes sense



Thanks


-
How to get stream data from producer on server side to pipe to fluent-ffmpeg
6 juin 2023, par Nicolas FerrariI’ve developped a live streaming app using mediasoup but I’m having trouble understanding how data flows from producer to consumer on the server side.
I’d like to get the producer video stream on the server and process it with fluent-ffmpeg library.


I tried trace events, I looked for data events, I found old posts about “rtppacket” or “rtp” or other events that don’t appear in the documentation.


I also tried to use the mediasoup-demo github code as help but it didn’t work, and I don’t want to use ffmpeg with shell commands but with the fluent-ffmpeg library.


Maybe I missed something in the documentation. If so, can you point me in the right direction please ?


TL ;DR : How can I access the streaming data being sent by the producer on the server side with mediasoup ?


Thanks in advance for your help :)


-
FFMPEG scale, zoom, and concat filter
2 août 2018, par Karate_DogI am using ffmpeg for android to produce video with mp4 format. I’m having trouble getting this command to work in FFMPEG, basically I am trying to add two images, scale them, add zoom effect, and finally concat the result into one video file. I have done something like this :
ffmpeg
-t 8 -i image1.png
-t 8 -i image2.png
-filter_complex
[0:v]scale=720:720[scl1]; [1:v]scale=720:720[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4Been tinkering with this command for a while but still can’t get it to work and I got error :
Input link in1:v0 parameters (size 1280x720, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 45:31)
[Parsed_concat_7 @ 0xf0d77600] Failed to configure output pad on Parsed_concat_7