
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 (86)
-
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 ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (11114)
-
how do i get my 16bit pcm wav to load in google hangout app ?
12 mai 2014, par user3576343I have tried audacity, ffmpeg and several others. The ONLY file i can get my soundboard app to load is the goodday.wav that comes with the source code to their google media app, sample apllication.
has anyone been able to get their files to load and what program/settings have you used that worked ?
-
FFmpeg keep framerate of input video despite overlay on color source
12 mai 2022, par Peter- 

- FFmpeg can
overlay
(docs) videos like this :




ffmpeg -i inputA_60fps.mp4 -i inputB_60fps.mp4 -filter_complex "[0:v] [1:v] overlay=shortest=1" output1.mp4


-> The frame rate of
output1.mp4
is automatically the same as that of the inputs (60). I like this.

- 

- FFmpeg can also overlay on a
color
(docs) source like this :




ffmpeg -i input_60fps.mp4 -filter_complex "color=c=black [c]; [c] [0:v] overlay=shortest=1" output2.mp4


-> The frame rate of
output2.mp4
is always 25, because the default frame rate of thecolor
source is 25, even though the input has a frame rate of 60. I don't like this.

- 

- The
color
frame rate can be specified explicitly like this :




ffmpeg -i input_60fps.mp4 -filter_complex "color=c=black:r=30 [c]; [c] [0:v] overlay=shortest=1" output3.mp4


-> But then the frame rate of
output3.mp4
is always that fixed value 30. I don't like this.

Question : How can the output frame rate instead automatically use the same frame rate as the input again ?


- FFmpeg can
-
Issue with playing some .mp4 on Google Chrome
19 mai 2015, par AlexI have downloaded some .mp4 files from shutterstock to use them in my website project.
Everything works perfect on localhost, i can play the movies like localhost/example.mp4 on every browser. I uploaded the files on my server, but now, it won`t play with Google Chrome (myserver.com/example.mp4), but will play with other browsers. This is very strange.
Anyone have any explanation ?
I checked the mime types in my cPanel account and all are ok, also i added the next code into htaccess but still doesn`t work.
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/mp4 .mov
AddType video/webm .webmand
<filesmatch mp4="mp4">
Satisfy any
order allow,deny
allow from all
</filesmatch>What should be the issue ? Is a file issue or an issue from the server ? Cues from localhost it will open in Google Chrome.