Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (106)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (25204)

  • Simulate concatenated file using hard link ?

    16 décembre 2011, par Sugrue

    I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue to the next one.

    (For anyone interested, the plugin is Aforge.Net FFMpeg, and I am trying to import VOB files)

    It looks like quite a task to reprogram the plugin. An alternative solution is to copy the file parts to a concatenated file, but this is slow because I am dealing with many GBs of data.

    Is it possible to use a file system hard link to point to multiple files ? Or is there some other way to 'fake' a concatenated file ? Using command line FFMpeg I can use 'type' to live stream a concatenate file in, but I can't figure out how to achieve this in c# with this plugin.

    I am on Windows 7.

  • ffmpeg concat particular videos from text file

    29 juin 2022, par tejas netradyne

    i wanted to concat only 1st and 4th video from my txt file 'list_of_videos' where my txt file looks like this :

    


    


    file 'video1.mp4'
    
file 'video2.mp4'
    
file 'video3.mp4'
    
file 'video4.mp4'

    


    


    currently i am able to stitch all videos from 1 to 4 using :

    


        ffmpeg_command= 'ffmpeg -f concat -safe 0 -i %s -c copy %s' % \
                            (
                                list_of_videos,
                                video_path
                            )


    


  • saving the file converted by ffmpeg

    17 avril 2014, par Jennifer

    I'm using the below code to convert a .caf to .mp3, but the below does not save the file converted... so i need save the file converted in a specific path

    File.CAF_PATH = GetConfig("FFMPEG")
    strCommand = String.Format("... {0} {1}", File.FilePath & File.SavedFilename & ".caf", File.FilePath & File.SavedFilename & ".mp3")
    Dim convertor As Process = Process.Start(File.CAF_PATH, strCommand)
    convertor.WaitForExit()

    any suggestions ?