Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (75)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Supporting all media types

    13 avril 2011, par

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9123)

  • Ffmpeg http stream gives "invalid data found when processing input"

    26 juin 2019, par pillarman38

    I have an http stream of an mkv file that I am trying to transcode to mp4 via ffmpeg. I see that ffmpeg is streaming the data but ffplay gives me an error message. Here is the command I enter to start the stream ffmpeg -i "input.mkv" -f mpeg1video -vf "scale=640:480" -r 20 "http://localhost:port". And then I am using this command to try to retrieve and view the stream : ffplay http://localhost:port. When I do so I get this error : http://192.168.1.19:4012: Invalid data found when processing input. What do I need to do to see the video output with ffplay. I am using windows 10 with a node http server.

  • ffmpeg returns "Invalid data found when processing input" when creating RTSP stream from H.264

    22 mars 2019, par Ahm23

    I’m trying to create an RTSP stream from an H.264 source on Ubuntu using ffmpeg, however, I keep getting the error prompt "Invalid data found when processing input". I’m working on an AWS DeepLens.

    There seem to be some solutions on the internet for similar problems but none of them seem to be working.

    Executed Command :

    ffmpeg -loglevel error -re -f concat -safe 0 -i /opt/awscam/out/ch1_out.h264 -c:v copy -flags +global_header -rtsp_transport tcp -f rtsp "RTSP"

    Where "RTSP" is the rtsp path/url.

  • Using ffmpeg to obtain "raw" audio data

    10 mai 2016, par Henry W.

    I am trying to use FFmpeg, libavcodec, libavformat to extract the "raw" information from an audio file.

    I know how to read an audio file into AVFrame objects, but I don’t know how to extract the samples from the frame. The documentation does not seem to provide information for audio samples. I expect the sample to be an array of integers/floating points representing the discrete signal that represents the audio.

    How do I achieve that ?

    Update : Following the example given here, I have successfully obtained an array of samples from an audio file. However, the signal appears to be quantized, and plotting the signal (first 100ms, Sample rate : 44100, normalized with a factor of 1/2,000,000,000) gives the following : Samples
    I have also tried converting the signal bitwise to floating point, but that results in NaNs and extreme variations in the amplitude.