Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (53)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5154)

  • mobile-ffmpeg-https (4.3.1) POD install failed

    22 avril, par shruti tupkari

    I am getting error on my pod install command , Error creating package is mobile-ffmpeg-https (4.3.1). Image attached for more details.

    


    Actually i have not used this package anywhere in my project. I tried to use it and then removed it from project. But i am not getting why this is still showing up in pod install.

    


    i tried deleting my podfile.lock and again running pod install but issue remains.

    


    enter image description here

    


    thanks in advance .

    


  • FFMPEG and HTTPS

    14 juin 2012, par Joel

    ffmpeg lists http as a protocol when I ask : ffmpeg -protocols

    Does this also mean support for a https url ? Do I need to encode this url somehow for the command line. I get "No such file or directory", but with http urls (at least some) it does work.

    A url (created for a Amazon S3 bucket) similar to this one does not seem to work :
    https://mycompany-video-test.s3.amazonaws.com/client/btr/video/xyz0011-x403-snap-n-go-ex/1/video/baby-laugh-ripping-paper.mp4?AWSAccessKeyId=AVIAZL9J6SIRPAA&Expires=1323709667&Signature=pTvS9F2do2t8%3D

    I suspect the format of the url is problematic, I've also tried enclosing in quotes... Yes, this URL does not currently work as it has expired, but even while its valid, its a problem.

    In short :
    1) Should https work ?
    2) Do I need to format the url somehow ?

  • FFMPEG : How to record video from one source and audio from other source ?

    2 juin 2019, par F O X

    I’m using this command to record camera ip :

    ffmpeg -use_wallclock_as_timestamps 1 -rtsp_transport tcp -i rtsp://192.168.1.105/media/video1 -c:a aac -c:v copy -flags +global_header -strftime 1 -f segment -map 0:0 -segment_time 30 -reset_timestamps 1 file_%Y-%m-%d_%H-%M-%S.mp4

    But i would like to add an audio from a different camera ip which use this stream rtsp ://192.168.1.106/media/video1

    Is this possible ?