Recherche avancée

Médias (91)

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7171)

  • ffmpeg download from m3u8 link but not from local m3u8 file

    15 septembre 2022, par k4anubhav

    I downloaded a master m3u8 from a link and now I want to download by
ffmpeg -i test.m3u8 -acodec copy -vcodec copy out.mp4
it to mp4 but now it not downloading
and getting an error Output file #0 does not contain any stream
but when I use the link (like https://google.com/master.m3u8) it downloads the video file
ffmpeg -i https://google.com/master.m3u8 -acodec copy -vcodec copy out.mp4

    


    I want to download the video using local m3u8 file

    


    PS. my session is not out Vlc still show the VIDEO

    


  • Double decoding with same bitrate android

    3 mars 2016, par Bee

    How to do double decoding with same bit rate android ? I mean I want to play 2 videos in 2 different views but syncronisedly. I found this grafika double decoder. But it is not with same bitrate.
    The documentation says that.
    Any one know any sample project or guideline that I can follow ? Or maybe just can illustrate the steps I have to do ? May be used ffmpeg or something else ?

  • What options I should use to rescale video without skewing them in FFMPEG Rails ?

    5 juin 2019, par ADMAT Bandara

    The main issue happens when it processes the recalling

    All videos uploading from Apple iOS will process nicely.
    But all videos uploading from Android devices are getting skewed.

    In my rails app, I am using Carrierwave:Video and FFMPEG to process videos with the help of delayed jobs.

    class VideoUploader < CarrierWave::Uploader::Base

     include CarrierWave::Video
     include CarrierWave::Video::Thumbnailer

     # For carrierwave_backgrounder
     include ::CarrierWave::Backgrounder::Delay

     version :rescaled do
       process encode_video: [
         :mp4,
         resolution: "640x480", # Aspect ratio is preserved automatically
         audio_codec: "aac",
         custom: "-strict experimental -q:v 0 -preset slow -g 30",
         callbacks: { after_transcode: :set_success }
       ]
     end


     version :thumb do
       process thumbnail: [{format: 'png', quality: 10, size: 400, strip: true, logger: Rails.logger}]
       def full_filename for_file
         png_name for_file, version_name
       end
     end

    This is correct videos screenshot

    https://drive.google.com/open?id=1D0aNWcVxtL6DbTwBmWWIGzUUuyEyWNOG

    This the video screenshot after video process with FFMPEG

    https://drive.google.com/open?id=1vilExHoan2UuRPH9RbiZig58H1TwyewA

    (It’s like vertically pressed)


    Please help me, if you know a solution