Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (63)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le 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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11273)

  • FFMPEG corrupting audio data when trying to edit metadata

    25 mai 2016, par Matthew Goode

    I’m trying to use FFMPEG to edit some metadata in Powershell. My problem is that FFMPEG simply outputs an audio file with the correct metadata, but the audio does not play. The length of the track is reduced to a fraction of a second. Here is the command I’m using in Powershell :

    & $ffmpeg -y -i $flac.fullname -c copy -metadata track="$tracknumber" $flac.fullname

    Previously, I tried having -map 0:0 in there too, but it didn’t make a difference. Thanks for any help.

    Edit : I’m not sure if this is intentional behavior or not, but if I change the output path to be a new destination (rather than saving over the old destination) it does work correctly. So as a workaround, I’m just using a temp folder as an output then moving the files back to where I want them.

  • How to setup ffserver to stream a webcam feed to Android VideoView

    20 août 2015, par der_felix

    I would like to stream a webcam (logitech c920) via ffserver and wifi to my android phone and render the stream to a videoview with the mediaplayer class.
    Google has a list of compatible file formats but just very little information regarding recommend stream configurations.

    Has someone a piece of advice how to setup ffserver to the needs of android ?

  • Using ffmpeg in C# WPF app to edit m4b metadata

    19 mai 2020, par master_ruko

    I am trying to add functionality to a WPF app to edit the chapter metadata of an m4b file. I was planning of using FFmpeg. I can do it in the command line if I have an existing FFmpeg metadata file with something like

    



    ffmpeg -i original.mov -f ffmetadata -i metadata.txt compressed.mp4


    



    But I don't know how do do this with a WPF app. Part of the reason that I don't want to just use the command line is that I don't have a metadata file, so I have to parse a cue file and make one on the fly. Also, working on my c# skills. I found some stuff on ffmpeginterop but it looks like that's used if you want to deal with the media stream.