Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (99)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (8801)

  • ffmpeg : record 1 hour segment, right on the hour, no/little frame lost [closed]

    2 septembre 2024, par Jean-Michel

    I need to record 24/7 an incoming SRT stream into 1 hour chunks, starting right on the hour.
The start needs to be as close as XX:00:00.000 as possible and little to no frame lost between the recordings.

    


    For now I am using a systemd service with that ExecStart command :

    


    /usr/bin/ffmpeg -fflags +discardcorrupt -i 'srt://:4010?pkt_size=1316&mode=listener' -c copy -map 0:v:0 -map 0:a? -f segment -strftime 1 -segment_time 3600 -reset_timestamps 1 -segment_format ts '/somefolder/recording_%%d%%m%%Y_%%H%%M00.ts'


    


    And using a crontab to restart the service on the hour to insure the next file properly starts at the expected time.

    


    0 * * * * cd /etc/systemd/system && systemctl restart srt_recorder_4010.service


    


    Unfortunately, the restart of the service takes 5 to 10 seconds and we are loosing that duration in the recorded file.
If I'm not using the crontab, I get 1 hour files but I have no control on the start time.

    


    Any suggestion to get something more accurate ?
Could there be a way to combine ffmpeg internal ability to exactly segment 1 hour file but enforce to do it on the hour ?
Or externally, if there was a way to send a "next file" command (api, signal) to a perpetual running ffmpeg to change recording file ?

    


    Thanks

    


  • Dailymotion Video Url to Audio Downloader

    27 août 2020, par Maisum Abbas

    I am trying to create Dailymotion Video URL to Audio Downloader. Since I have to deploy it on Firebase, I will have to use JavaScript, hence node.js. I have tried various approaches by following different links but didn't find anything that works for me. Most of them are based on terminal from where they can run which I don't require including ffmpeg. One ffmpeg tutorial I found was based on uploading videos and then converting it to audio which didn't work with the URL. Also, I didn't find any code from where I can use or read to manage ffmpeg in code, just found the guide of how to use it in terminal. So can anyone guide me where I can get a useful link that can help me. I have tried on GitHub as well. Really hoping to get help from here.

    


  • how do I convert .iso to .mp4 without mounting with ffmpeg [migrated]

    29 août 2011, par teferi

    The problem is - I want to convert .iso with dvd to .mp4 (h264/ac3), but I cannot mount it via mount -o loop, because I'm on a virtual machine that doesn't allow to do that.

    Googling doesn't help.

    For now I'm trying to use mencoder for the task, but it's hard for me to convert all the parameters from ffmpeg-style to mencoder style.