
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (36)
-
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 (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
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 (6685)
-
str_replace %% na File Name In Batch File [closed]
11 août 2024, par HarinderI want to replace the current file name inside a batch file


for %%a in ("*.mp4") do ffmpeg -i "%%~a" -vf "drawtext=text=%%~na:fontfile='C\:\\Users\\harin\\Desktop\\test\\Fonts\\Glamy Sunrise.ttf':fontcolor=black:fontsize=54:x=20:y=50" -b:v 1M -r 60 -b:a 144k -crf 17 "C:\Users\harin\Desktop\test\in\Working\1\%%~na.mp4"



Need to replace
drawtext=text=%%~na
with some thing like thisdrawtext=text=str_replace(array('-','_'),array(' ',''),%%~na)


how can i do this... thx


-
Automating Basic Video Editing [closed]
2 février, par user29470652What's guys ! I am a beginner in programming.


As of now, I have created a basic YouTube downloader with the help of Python, FFmpeg, yt dlp, and Flaskapp.


Now, I am automating the basic video editing part ( Turn bulk video files into a basic similar edit like we have one template then we add a caption from the title of the video, then place the video in the center of the template trim out to meet the video length of the given video then saving it) with the help of FFmpeg.


Has anyone already tried or built it ?? Any marketer or video editor ??


I am halfway to the project


Here is theenter image description here


I am halfway through the project and wonder if anyone has ever done it before like any video editor or marketer ??


-
How to stitch videos to one 360 video without 3rd party software ?
6 janvier 2017, par Basset houndI am using a 3D software, something like GTA.
I wanted to create a 360 video.
What I did was create 84 videos automatically by C#.
Set camera orientation to, (Step = 30 degree)1. (Rx, Ry, Rz) = (0.0, -90.0, 0.0)
2. (Rx, Ry, Rz) = (0.0, -90.0, 30.0)
3. (Rx, Ry, Rz) = (0.0, -90.0, 60.0)
...
12. (Rx, Ry, Rz) = (0.0, -90.0, 330.0)
13. (Rx, Ry, Rz) = (0.0, -60.0, 0.0)
14. (Rx, Ry, Rz) = (0.0, -60.0, 30.0)
15. (Rx, Ry, Rz) = (0.0, -60.0, 60.0)
...
83. (Rx, Ry, Rz) = (0.0, 90.0, 300.0)
84. (Rx, Ry, Rz) = (0.0, 90.0, 330.0)After created 84 videos, I used Kolor Autopano Video to stitch the video.
The result is good.
However, I was wondering, each video has precise camera orientation.
I think I don’t really need Kolor Autopano Video to create 360 video.
Is it possible to stitch 84 videos by FFmpeg or C# ?
Do you have any hint about this ?
Thank you.