
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (60)
-
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11777)
-
checkasm/rv40dsp : cover more cases
5 décembre 2024, par sunyuechi -
close the running application in vb.net from background
25 novembre 2024, par TOMi want to stop the running (ffmpeg) process from background . i use the



process.kill() 




i wrote the code . but in this process the output file is getting corrupted.



Dim pProcess() As Process = Process.GetProcesses
 For Each p As Process In pProcess
 If p.ProcessName = "ffmpeg" Then
 p.WaitForExit(1000)
 p.Kill() 
 p.Close()
 End If
Next




is there any other method to terminate the process without file being corrupt



thanks


-
videos converted to gif with ffmpeg have a box pattern background
18 mars 2017, par vasisdasI recently started using ffmpeg to convert small videos I make into gifs. However, I’m noticing that all gifs I make have a pattern background of some kind. It’s not too noticeable of a difference between the video and the gif, but you can see it clearly in the difference between the video preview and the gif preview :
Gif in imgur album, along with a thumbnail of the gif and the video
The command I send to ffmpeg to convert :
ffmpeg -i "video path" -pix_fmt rgb24 "output file path"
I’ve tried it with and without the -pix_fmt rgb24. Any ideas what else it could be ?