
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (26)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6055)
-
mp3probe : Detect mp3 stronger with just 200 frames, this should speed up detection
30 novembre 2011, par Michael Niedermayermp3probe : Detect mp3 stronger with just 200 frames, this should speed up detection
-
what should be the ffmpeg command line for watermarking in batch on linux server ?
16 août 2017, par alinaI apply watermark on single video via this command line ;
ffmpeg -i input.mp4 -i watermark.png -filter_complex "overlay" output.mp4
what should be the code line for batch on linux server using php ?
-
How To Add Line Break In CMD Command In Batch File
23 août 2022, par HarinderI want to add a line break in a batch file here is the code


for %%I in (*.mp4) do (
 set "FullFileName=%%I"
 set "OnlyFileName=%%~nI"
 setlocal EnableDelayedExpansion
 set "FullFileNameTrim=!OnlyFileName:_=!"
 set "FullFileNameTrim=!OnlyFileName:~9!"
 
 set "OnlyFileName=!OnlyFileName:_= !"
 set "OnlyFileName=!OnlyFileName:-= !"
 set "n=!^&echo.!"
 set "OnlyFileName=!OnlyFileName:(=%n%!"
 set "OnlyFileName=!OnlyFileName:~9!"
 ffmpeg.exe -i "!FullFileName!" -vf "drawtext=text=!OnlyFileName!: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\!FullFileNameTrim!.mp4"
 endlocal
)
endlocal



I am not able to put line break by using


set "n=!^&echo.!"
 set "OnlyFileName=!OnlyFileName:(=%n%!"



Is there a way I can add a line break


Thanks