Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (60)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4763)

  • Include an executables into UWP final package

    11 janvier 2019, par kangjmoon

    I’m writing an UWP Store app that calls other executables, such as OpenSSL and FFmpeg.exe. I successfully included those in a WPF app. However, with UWP, how to build them into the final package to upload to the Windows Store ?

    I’m thinking of these solutions :

    1. Add the needed file (for example, FFmpeg.exe) to the project. Then chose the Build Action property to ’Content’ and copy to Output Directory. But this option seems not possible with the whole folder with sub-folders and files in them (for example, OpenSSL portable folder).

    2. Write a method to copy the file (FFmpeg.exe) into the Local Folder of UWP app when the program starts.
      ...

    Is there a better way to do this ? Thanks.

  • avformat/dashdec : Also fetch final partial segment

    5 avril 2021, par Matt Robinson
    avformat/dashdec : Also fetch final partial segment
    

    Currently, the DASH demuxer omits the final segment for a non-live
    stream (using SegmentTemplate) if it is shorter than the other segments.

    Correct calc_max_seg_no to round up when calulating the number of
    segments instead of rounding down to resolve this issue.

    Signed-off-by : Matt Robinson <git@nerdoftheherd.com>

    • [DH] libavformat/dashdec.c
  • FFmpeg concatenation, no Audio in Final Output

    12 septembre 2016, par user4889724

    I have the following command working in ffmpeg, which adds 1 second of a black frame to the beginning of the video. However, I lose the audio from the original video in the output video. How can I adjust the command to make sure the original audio stays with the final output, or better yet, there is 1 second of "blank" audio at the beginning so it matches the new output video.

    ffmpeg -i originalvideo -f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1 -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; [1:v] trim=end=1,setpts=PTS-STARTPTS [pre]; [pre][main] concat=n=2:v=1:a=0 [out]" -map "[out]" finaloutputvideo.mp4