
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (95)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (7080)
-
Revision 95cf143167 : Moved man files to the man directory.
22 avril 2012, par Marc NoirotChanged Paths :
Delete /man/1/flvmeta.1
Delete /man/1/flvmeta.1.md
Add /man/flvmeta.1
(from /man/1/flvmeta.1
:7c935d3c082b8a13b36acca5788fe76da0dcc529)
Add /man/flvmeta.1.md
(from /man/1/flvmeta.1.md
:7c935d3c082b8a13b36acca5788fe76da0dcc529)
Moved man files to the man directory. -
No such file of directory Windows 10 PowerShell
7 avril 2020, par Constadinos ChatzisTill now the command i use to convert HDR videos to SDR worked just fine till now. I am gettong always the error message "
F:\_4k_Movies_\Dolittle: no such file or directory
" any idea what's whong ?


.\ffmpeg.exe -i F:\_4k_Movies_\Dolittle 4K.mkv -vf zscale=t=linear:npl=100,format=gbrpf32le,
zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,
format=yuv420p -c:v libx265 -crf 10 -preset fast F:\_4k_Movies_\Dolittle.SDR.mkv



-
CMD FFMpeg Converting from one directory to another
2 mai 2017, par Jeff WenzI have the folder which has the ffmpeg.exe. In this folder I have 2 folders : MP4 and MP3. In the folder called MP4, I have a bunch of video I want just the audio from. I want to convert all of them to mp3 and stick them in the MP3 folder. I have the code to convert but don’t know how to deal with the directories. I can move all of the mp4’s to the root with the exe and then all of them will convert to mp3 right there, but I want to organize them in their directories. How can I edit my code to work with the directories in the root folder ?
FOR /F "tokens=*" %G IN ('dir /b *.mp4') DO ffmpeg -i "%G" -acodec mp3 "%~nG.mp3"
Edit : tried lit’s code :
FOR /F "tokens=*" %G IN ('dir /b "mp4\*.mp4"') DO ffmpeg -i "%~G" -acodec mp3 "mp3\%~nG.mp3"
and tried a couple different edits and kept getting the result "No such file or directory"