Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (70)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

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

Sur d’autres sites (11781)

  • Sync 2 Audio Files [on hold]

    30 mars 2017, par Syed Armaan Hussain

    I have 2 audio (.wav) files recorded by two different persons.
    They are saying the same sentences but there is some differences in duration like the first audio is 10 sec long but other is 9 sec long. There are deifference in silences and lipsing.
    I want to sync these two audios . How can i achieve it . If anyone out there has already did research on it . Please share your experience. Or any SDK that can help me with this . I am using C# tried it with ffmpeg but didnt find any command for this.

    something like this
    https://digicompdiy.wordpress.com/2012/10/15/automatically-sync-up-two-audio-files/

    Reagrds

  • C# - Streaming video from IP Camera with overlay to Facebook Live

    6 avril 2018, par Justin Li

    I am currently working on a project where I am trying to have a C# application connect to multiple IP Cameras where I will add an overlay and continue to forward that stream to an RTMP server like Facebook Live. I am currently using the Ozeki Camera SDK to work with my IP Cameras but I have looked into using AForge as well.

    I have everything set up to stream and overlay but I am having some trouble understanding how I can convert video and audio to be stream-able to the Facebook RTMP server. It seems I have to have an encoder for the video but after Googling, I am coming up short with methods of how to achieve this. I am hoping that someone has some experience in this field can give me a hand.

    Thanks in advance.

  • Drag and drop ffmpeg batch file [closed]

    28 août 2021, par johhnnyy

    I have little to nothing experience with ffmpeg and found this nice drag and drop script but it only work for one file at the time. Can it be modified to work for multiple files at the same time ?

    


    pushd %~dp0
echo Encoding 720p ... 
ffmpeg.exe -i "%~1" -vf scale=1280x720:flags=spline,format=yuv420p,"subtitles='%~n1'%~x1" -map_metadata -1 -movflags faststart -c:v libx264 -profile:v main -level:v 4.0 -preset veryfast -crf 16 -maxrate 20M -bufsize 25M -x264-params colormatrix=bt709 -c:a copy "%~n1_720p.mp4"
popd
echo Done. 
PAUSE