
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
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 (5964)
-
%a and %%a suddenly don't work in Win 10 cmd and batch file respectively ?
14 janvier 2017, par cobaltB12I was trying to batch convert a folder of .flac to .mp3 using FFMPEG, but when i ran my batch file I got the "%F is unexpected at this time" error, even though i used "%%F" in the batch file. To test what was really the problem, i proceeded to type variations of %F into cmd directly, but could not get it to work either. Did something change in windows 10 regarding the use of variable names in the for loop ?
cmd commands I tried :
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%F" in (*.flac) echo %F
"%F" was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for %F in (*.flac) echo %F
echo was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%%F" in (*.flac) echo %%F
"%%F" was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%f" in (*.flac) echo %f
"%f" was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%g" in (*.flac) echo %g
"%g" was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%g" in ("*.*") echo %g
"%g" was unexpected at this time.
C:\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy>for "%g" in ("*.*") do echo %g
"%g" was unexpected at this time.original batch file for FFMPEG
cd "\Users\yt\Music\Joe Hisaishi (Classical Guitar) - Copy"
echo in directory "%cd%"
pause
for "%%F" in ("*.flac") do (
echo converting "%%F"
"C:\Users\yt\Downloads\OtherApps\FFMPEG\bin\ffmpeg.exe" -i "%%F" -codec:a libmp3lame -qscale:a 2 "%%~nF.mp3"
echo del "%%F"
)
cd "%~dp0" -
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 ??