Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (67)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (10035)

  • How to merge video file with audio file and maintain creation time ?

    19 janvier 2021, par madprogramer

    I was finicking around with youtube-dl and ended up downloading a video that youtube-dl wasn't able to merge the generated audio and video. After some investigation, I found that there was an issue in my ffmpeg config.

    


    Normally, if you actually run youtube-dl a second time after fixing ffmpeg, it will automatically merge the files for you. But as fate would have it, the online video has since been deleted so youtube-dl freaks out.

    


    Fortunately ffmpeg itself can also merge audio and video files, but loses a very nice feature youtube-dl's implementation has, keeping the creation time of the files (i.e. creation rather than download or publication time).

    


    Is there any way to merge an audio and video file and keep the creation/last modified date ?

    


  • ffmpeg - 'No such file or directory' though the file exists

    23 mai 2021, par Md Yeamin

    I am running following command to extract audio from videos and merge them into a single file :

    


    -y -hide_banner -i /storage/emulated/0/Videos/video_4.mp4 -i /storage/emulated/0/WhatsApp/Media/WhatsApp Video/VID-20210430-WA0010.mp4 -i /storage/emulated/0/WhatsApp/Media/WhatsApp Video/VID-20210430-WA0052.mp4 -filter_complex [0:a]atrim=duration=1119.028,volume=1[a_0];[1:a]atrim=duration=84.057,volume=1[a_1];[2:a]atrim=duration=278.029,volume=1[a_2];[a_0][a_1][a_2]concat=n=3:v=0:a=1[audio] -map [audio] -acodec aac -vn /storage/emulated/0/Videos/audio.aac 


    


    But ffmpeg says

    


    /storage/emulated/0/Videos/video_4.mp4: No such file or directory


    


    I can ensure that the file exist on that specified path. What might cause the issue ?

    


    Note : The same error occures for some other comands too, but in all the cases the video file exist in the specified path.

    


  • change audio part from mkv video file to flac audio file without losing quality [closed]

    29 août 2023, par Jimmy wu

    how could I write a Linux command to manipulate ffmpeg to change audio part from mkv video file to flac audio file without losing quality ?

    


    I use following command and I found that the size of audio file is almost the same as video file.

    


    ffmpeg -i "2023-08-28 15-32-02.mkv" -ss 0:0:0 -to 1:9:2

8 -vn -c:a flac 2023_08_28_CPU_DV_1.flac


    


    what command should I use ?

    


    I want to change "only audio part" from mkv video file to flac audio file without losing quality,

    


    then the size of file would not be that big