Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (72)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5226)

  • Ruby Video Upload - Cocaine error when trying to transcode video

    21 janvier 2015, par Scottagecheeze

    I am having a bit of trouble when it comes to transcoding a video being uploaded by Paperclip to S3. I have tried both gem 'paperclip-ffmpeg' and gem 'paperclip-av-transcoder. Both fail when I try to add a new style :

    :styles => {
       :medium => { :geometry => "640x480", :format => 'flv' }
     },
     :s3_credentials => {:bucket => ENV['S3_BUCKET_NAME'], :access_key_id => ENV['ACCESS_KEY_ID'], :secret_access_key => ENV['SECRET_ACCESS_KEY']},
     :processors => [:ffmpeg],
     :path => ":id/:style/:style_:basename.:extension"

    I am able to upload my video as is but I am not able to transcode them. Here is the error that it gives me, sorry for the link, I am not able to post images yet.

    Essentially I want to be able to upload a video in any format and transcode it into a specific format. Any help is greatly appreciated.

    Thanks

  • FFmpeg video to still images and back to video lossless

    28 novembre 2012, par Rigoni

    I'm trying to extract an image from an uncompressed AVI video using FFmpeg with the command :

    ffmpeg -i sorce.avi -f image2 -pix_fmt bgr24 images/%1d.bmp

    All is okay, but now I need to convert these images back to a video file.
    I'm trying using this command :

    ffmpeg -f image2 -r 24 -i marked/%1d.bmp -y -vcodec ffv1 -pix_fmt bgr24 test.avi

    But the output video is compressed and poor quality.

    Is there any way to extract the images in RGB format and than back to a lossless video ?

    I also tryed to use -vcodec rawvideo, but the quality still bad.

  • How to convert video from mov to mp4 video format through FFMPEG integration in android [closed]

    28 septembre 2012, par Sanat Pandey

    I have a problem that I received a video file from the server which can not be played throgh video view from the app I am making. I don't know what the actaul problem is because all videos are played through same video view but the video received from the server side is not played. So, I think that I have to integrate FFMPEG in our android app, so I can play every video at a runtime conversion. For this I have read much more about FFMPEG Library integration with android through many sites as :

    http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/
    Downloaded some projects from GitHUb (https://github.com/appunite/AndroidFFmpeg) but unable to succeed for building the Library through NDK. Some thing I missed and I am working on Windows machine, probably this might be a problem. I want the exact solution regarding this, means step by step solution for building the android project with FFMPEG Library. If you have some useful suggestion then please share with me.

    Thanks in advance.