
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (66)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 ) (...)
Sur d’autres sites (9981)
-
Is there a FFMPEG C# Wrapper with multiple filters ?
7 juin 2021, par AfricanMambaDoes anyone happen to know if FFMPEG or any other sources has a wrapper that I can use in C#/.NET to run certain filters ? Filters that I am trying to run on different audio files in my program include silenceremove, silencedetect, volumedetect, and etc. I want to avoid using just the .exe file that I already have when implementing this in my program.


I have looked through several forums and online resources and found one called MediaTookKit, but it lacks the filters that I am attempting to use. If anyone knows of one that already exists or can provide me with steps to make my own wrapper using certain FFMPEG filters, it would greatly help.


-
FFMPEG RTMP Streaming Issue On Live Server
7 juillet 2016, par skosI am trying to stream MP4 file over RTMP with nginx-rtmp. I have no issues streaming on my local machine with this command -
ffmpeg -re -i "sample-video.mp4" -c copy -f flv rtmp://localhost:1935/live/mystream
However. when I try to replicate the same on server with command -
ffmpeg -re -i "sample-video.mp4" -c copy -f flv rtmp://SERVER_IP_ADDRESS:1935/live/mystream
I get this error -
RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
I looked up online for 10060 socket errors but couldn’t find much help. I am assuming this could be Firewall related but I am not exactly sure how do I resolve this. Any help would be apprecaited. Thanks !
-
Using ffmpeg native aac codec, but metadata says libvo_aacenc, and faststart not supported ?
8 juillet 2016, par Bob SI’m using ffmpeg and am trying to switch from using the ’libvo_aacenc’ encoder to the native aac encoder. It seems to work, but the metadata in the output seems to indicate that it’s still using the old encoder.
I changed the audio portion of my ffmpeg call from
-i out.wav -acodec libvo_aacenc
to
-i out.wav -acodec aac -strict experimental
But the output includes this :
Metadata :
encoder : Lavf53.21.1
Stream #0.0: Video: libx264, yuv420p, 432x256, q=-1--1, 30 tbn, 30 tbc
Stream #0.1: Audio: libvo_aacenc, 44100 Hz, 1 channels, s16, 200 kb/sI don’t understand where it is still getting the ’libvo_aacenc’ from ?
Another problem, maybe unrelated, is that when I try to add the "-movflags +faststart" option to my call, I get errors :
[mp4 muxer @ 0x49ad520] [Eval @ 0x3e59d37c6b0] Undefined constant or missing ’(’ in ’faststart’
[mp4 muxer @ 0x49ad520] Unable to parse option value "faststart"
[mp4 muxer @ 0x49ad520] Error setting option movflags to value +faststart.From looking online it would appear my ffmpeg version is old, pre faststart, but my ffmpeg version is 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c) 2000-2014 the Libav developers built on Mar 16 2015 13:26:50 with gcc 4.6.3
That seems like it should include faststart, which was introduced in 2013, right ?
Any ideas what could be going on ?Thanks very much,
Bob