Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (57)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7683)

  • All : Update copies of externals and versions of CDN references

    17 juin 2014, par paladox2015
    All : Update copies of externals and versions of CDN references
    

    Updates jQuery Mobile demo to use 1.4, updates Multipart demo to use
    latest jQuery UI, updates requirejs demo to use latest requirejs and jQuery,
    updates copy of QUnit to latest.

    Closes #1164
    Closes #1166
    Closes #1168
    Closes #1169
    Closes #1170

  • Why ffmpeg encoded video is void the first second ?

    18 septembre 2023, par SkizZO

    i am using a bash script to save a short video from an HIKVision cam with homeassistant when the doorbell is pressed.

    


    Here is the commad :

    


    ffmpeg -fflags +genpts -y -ac 1 -channel_layout mono -rtsp_transport tcp -hide_banner -loglevel info -err_detect ignore_err -i  "rtsp://$user:$dvrpasswd@$dvraddress:554/Streaming/channels/${camnumber}01" -map 0:v  -map 0:a? -ar 44100 -filter:a "volume=$volume" -t $seconds -acodec aac -vcodec copy $filepathname


    


    It results in a video without the preview-frame, who starts at 1sec. (the timeline also can't be fully rewinded) :

    


    Image

    


    This behaviour (in photo) happens on mobile phones, the time shift happen both on windows and android.

    


  • Concat video with different sizes and config with ffmpeg

    31 juillet 2022, par Abrar

    I am building a mobile app where I am using ffmpeg to process videos.

    


    Users can choose multiple videos and they need to be merged together creating a final video.

    


    The problem is their selected videos can have different dimensions and configurations.

    


    So, when I tried concat demuxer, it produces weird results with impossible length and no data.

    


    concat protocol with intermediate ts file, seems to work but the resolution and size is stretched.

    


    So, what I want to do is this -

    


      

    1. Re encode every video to a specific resolution, 1080:1920 or 9/16. The video should not be stretched, instead black borders will be added on sides to make it that size.

      


    2. 


    3. Once every video is re encoded and have the same config, concat them.

      


    4. 


    


    How can I do this ?