
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 (47)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9048)
-
avfilter/tests/integral : Fix build warning after adjust the location
10 février 2019, par Jun Zhaoavfilter/tests/integral : Fix build warning after adjust the location
Fix build warning like "warning : ISO C90 forbids mixed declarations
and code" after adjust the location for malloc fail check.Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
Signed-off-by : Jun Zhao <mypopydev@gmail.com> -
Can't upload .mkv video file to camtasia 2018
11 juin 2019, par FunTech StudentsVideosCan’t Import
.mkv
video file to camtasia 2018 :I have made an intro for my Youtube Channel on Penzoid and then uploaded it to my laptop in
.mkv
file format, now it can’t be import to camtasia 2018 for rendering with the recorded video in camtasia...I used cloudconvert to convert my intro to .mp4 format but it give me the following error :
ERROR Could not find tag for codec vp8 in stream #0, codec not currently supported in container
. Last message repeated 1 times
Last message repeated 1 timesI also used
.bat
file with the following code but it didn’t help me :@echo off
if not exist "fixed" mkdir fixed
for %%f in ("*.mp4") do "C:\Users\Nadeem Ullah\Downloads\Compressed\ffmpeg-win64-static\bin\ffmpeg.exe" -i "%%f" -c:a copy -c:v copy "fixed\%%~nf.mp4" -
How do I save file to current location during FOR recursion
30 septembre 2019, par Blaine P.I have a batch script to run ffmpeg on files recursively. Currently the script saves all the new files to a newly created directory named Output. Instead, I would like to save the new files in the same location as the original files. I thought I would use an environmental variable showing the current directory being traversed to during recursion but I can’t find it.
SET /P i=Enter the file extension
md output
For /R %%a IN (*.%i%) DO ffmpeg -i "%%a" -c:v libx264 -crf 10 -pix_fmt yuv420p "output/%%~na.mp4"The script works fine saving the file as the same filename with a new extension but places the file in the new "output" folder. I tried setting a new variable with %cd% within the FOR loop but that didn’t work.