Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (79)

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

  • How to add a 5.1 .flac audio track to a .ts file with already 3 audio tracks ?

    16 mai 2018, par Pablo

    I want to add a 5.1 .flac audio track to a .ts file that already has three audio tracks. I tried with tsMuxer and ffmpeg with unsuccessful results. In tsMuxeR the .flac track is not recognized and in ffmpeg everything seems to work fine until the very last moment when I check the file and the .flac audio track is not included in the "output.ts". The .flac track is about 3GB and its lenght is around two and a half hours.

    Thank you so much.

  • Im new to batch automation and ffmpeg. How would I delete a file after a remux has been completed using a batch automation file ?

    9 août 2024, par Voidmaster01

    Ive already automated the process of remuxing to a new file even with new names and all, but how would i go about deleting the original file after the process is completed. currently if i were to run the batch file it would supposedly delete the original file as it was starting the remux, also the remux can take anywhere from a couple of seconds to a couple of hours due to file sizes.

    


    I havent tried the deletion portion yet as i do not want to lose the file

    


  • If you rotate the iPhone's video with ffmpeg, the rotation information sticks. Can I hide this ?

    24 août 2017, par howmanylife

    The following implementation is a command to rotate the movie by 90 degrees.

    ffmpeg -i video.mp4 -vf transpose=1 -metadata:s:v:0 rotate=0 videoo.mp4
    -vf transpose=1

    The iPhone’s video contains rotation information and actually

    ffprobe -show_streams -print_format json videoo.mp4 2>/dev/null

    To output motion picture information or rotation information as described below.

    "tags": {
                   "rotate": "90",
                   "creation_time": "2017-08-24T01:49:38.000000Z",
                   "language": "und",
                   "handler_name": "Core Media Data Handler",
                   "encoder": "'avc1'"
               },
               "side_data_list": [
                   {
                       "side_data_type": "Display Matrix",
                       "displaymatrix": "\n00000000:            0       65536           0\n00000001:       -65536           0           0\n00000002:            0           0  1073741824\n",
                       "rotation": -90
                   }
               ]



    "rotate": "90",

    and

    "side_data_list":

    and

    "rotation": -90

    Is it possible to hide this ? Or is it possible to erase only this rotation information ?