Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (62)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (8304)

  • dashenc : Reduce the segment duration if cutting out parts with edit lists

    10 mai 2015, par Martin Storsjö
    dashenc : Reduce the segment duration if cutting out parts with edit lists
    

    This makes sure that the time + duration of the first segment
    matches the start time of the next segment for e.g. AAC audio
    with encoder delay.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/dashenc.c
  • Segmenting video into different parts and unique rendering on each part then concat afterwards

    2 mars 2016, par goudarziha

    I currently have a very poorly performing application that splits up a video, renders it and the concats all rendered videos on android using ffmpeg

    So I am running into issues with segmenting a video up into 5 parts at each different intervals/durations, rendering each video segment uniquely slowing up/speeding up and then finally concat all the segments back into one final video.

    Currently I am doing each part separately -

    Segmenting -
    example for one segment
    -y -i pathIn -ss 0.0 -t 2.0 -vcodec copy -acodec copy -an pathOut

    Rendering - example slowing down/speeding up

    - y -i path -filter:v setpts=2.0*PTS pathOut

    Concat -

    - f concat -i input1.mp4 -i input2.mp4 -i input3.mp4 -i input4.mp4 -i input5.mp4 -c copy output.mp4

    Right now I am running different separate thread for each editing of video, so 3, segment, rendering and concat.

    I am trying to get this all done on one command ffmpeg line if at all possible, if not just the segmenting and rendering of the videos and kick of the concat cmd line later.

    I am trying to emulate something similar to this https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

  • Mute parts of Wave file using Python/FFMPEG/Pydub

    20 avril 2020, par Adil Azeem

    I am new to Python, please bear with me. I have been able to get so far with the help of Google/StackOverflow and youtube :). So I have a long (2 hours) *.wav file. I want to mute certain parts of that file. I have all of those [start], [stop] timestamps in the "Timestamps.txt" file in seconds. Like this :

    &#xA;&#xA;

       0001.000 0003.000&#xA;   0744.096 0747.096&#xA;   0749.003 0750.653&#xA;   0750.934 0753.170&#xA;   0753.210 0754.990&#xA;   0756.075 0759.075&#xA;   0760.096 0763.096&#xA;   0810.016 0811.016&#xA;   0815.849 0816.849&#xA;

    &#xA;&#xA;

    What I have been able to do is read the file and isolate each tuple. I have just output the first tuple and printed it to check if everything looks good. It seems that the isolation of tuple works :) I plan to count the number of tuples (which is 674 in this case) and put in a 'for loop' according to that count and change the start and stop time according to the tuple. Perform the loop on that single *.wav file and output on file with muted sections as the timestamps. I have no idea how to implement my thinking with FFMPEG or any other utility in Python e.g pydub. Please help me.

    &#xA;&#xA;

       with open(&#x27;Timestamps.txt&#x27;) as f:&#xA;   data = [line.split() for line in f.readlines()]&#xA;   out = [(float(k), float(v)) for k, v in data]&#xA;&#xA;   r = out[0] &#xA;   x= r[0]&#xA;   y= r[1]&#xA;   #specific x and y values&#xA;   print(x)&#xA;   print(y)&#xA;

    &#xA;