Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10906)

  • How do I confirm if a php shell_exec was completed

    21 juillet 2015, par iamthestreets

    I am running a php script using the cPanel Cron Jobs. The script is using shell_exec to convert a video using ffmpeg. It executes the script and everything is working but it is not sending me the email. I am basically trying to get the output of the shell_exec to start another function in the php script so I wanted to send my self the email to make sure I am getting the output.

    For example I wrote :

    $command = "ffmpeg -i $og_video -b 1500k -vcodec libx264 -vpre slow -vpre baseline -g 30 $mp4_video";

    //EXECUTE THE CONVERSION
    $output = shell_exec($command);
    echo $output;

    I also tested the email by removing the shell_exec and just echo the $command variable. This will send me the full string in an email.

    What I am trying to accomplish is basically if the shell_exec executed then do something else.

    How do I check if the shell_exec was completed ?

  • Convert Videos with FFMPEG to PowerPoint 2016 compatible video format [closed]

    11 septembre 2020, par Sebastian S.

    I am trying to convert a bunch of videos to a video format that is natively supported by PowerPoint 2013/2016 on a Windows 7 system.

    


    Microsoft recommends on their website mp4 with h264 and aac.

    


    Video and audio file formats supported in PowerPoint

    


    


    In PowerPoint 2013 and later, and in PowerPoint 2016 for Mac, for the best video playback experience, we recommend that you use .mp4 files encoded with H.264 video (a.k.a. MPEG-4 AVC) and AAC audio. In PowerPoint 2010, we recommend that you use .wmv files.

    


    


    


    We recommend using .m4a files encoded with AAC audio. In PowerPoint 2010, we recommend that you use .wav or .wma files.

    


    


    Audio is not important for me.
I tried to convert my videos with ffmpeg using the following options :

    


    ffmpeg -i Input.avi -c:v libx264 -preset slow -crf 22 -c:a copy Output.mp4


    


    However I cannot import the video to PowerPoint 2016 (32 or 64bit, I tried both). I always get a missing codec error.

    


    PPT Error when including video files

    


    Has anyone successfully encoded videos to a natively supported PowerPoint video format (on Windows) ?

    


  • Taking a high resolution picture with FFMPEG and Webcam

    13 mai 2016, par user2088176

    I have a Microsoft LifeCam VX-3000 and I want to capture a single image from this video source.

    I have tried DirectShow :

    ffmpeg -f dshow -video_size 1280x960 -i video="Microsoft LifeCam VX-3000" -vframes 1 file.jpg

    [dshow @ 01D69340] Could not set video options

    and
    Microsoft WDM Image Capture :

    ffmpeg -f vfwcap -video_size 1280x960 -i video="Microsoft LifeCam VX-3000" -vframes 1 file.jpg

    [vfwcap @ 01D79340] Could not set Video Format.

    If I lower the video size to 640x480, it works, but every sites tells me that 640x480 is the maximum video resolution, but the still picture maximum resolution is 1280x960. Like here

    I would like to capture the image at the highest resolution possible. Is there a way to do it with FFMPEG ? What command-line options should I give it ?

    Thank you very much.