Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (37)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4090)

  • Is it possible to install SoX on XAMPP and how to use it ?

    6 mars 2016, par deepak bhardwaj

    I have installed sox on my windows. It is working on windows command prompt.

    C:\Program Files\sox-14-4-2>sox audio1.vox audio2.wav

    I don’t know how to use this on php. Is it required to install this sox on xampp server too. If yes, then how to install this. Please let me know the whole procedure for converting vox file to wav.

    I have tried this code but I did not get success.

    echo shell_exec("c:/Program Files/sox-14-4-2/sox -y -i audio1.vox filenew.wav &");
  • FFmpeg convert video to adaptive streaming and multiple audio track

    13 juin 2020, par user998405

    I have one mpeg video and this video consist of three audio track . And I want to convert this video to adaptive streaming. Here is the example command that used 
ffmpeg.exe -i c:\test\1.mpg  -c:a aac -strict experimental -map 0:v -map 0:a -c:v libx264 -s 854x480 -aspect 16:9 -f hls -hls_key_info_file enc.keyinfo -hls_list_size 1000000 -hls_time 2 c:\k854_out.m3u8

    



    Index.m3u8

    



     #EXTM3U
#EXT-X-STREAM-INF:PROGRAM-ID=1, BANDWIDTH=696000
854_out.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1, BANDWIDTH=1096000
1280_out.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1, BANDWIDTH=2096000
1920_out.m3u8


    



    Here my question how can I convert the adaptive streaming to support multiple audio track ?

    


  • Python Popen + ffmpeg [duplicate]

    14 mai 2021, par Fred

    I have a program which is developed in python 2.6 on Windows 10 which extracts images from 3 ip cameras at the moment. it uses subprocess.run with ffmpeg to extract the images

    


    I am trying to modify the python program to use subprocess.popen instead of subprocess.run

    


    My problem is how to know if the popen process has completed for one camera before restarting another for that same camera. Does anyone have an idea or an example ?

    


    Thanks