Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (13248)

  • FFmpeg command to transcode video in order to bypass YouTube Content ID

    18 août 2015, par 阿尔曼

    This is the code I use to crop and add subtitles to the video :

    ffmpeg -y -i VTS_01_1.VOB -filter_complex "[0:v] crop=720:432:0:72 [crop]; [crop] ass=VTS_01.ass" -c:v libx264 -c:a aac -strict -2 output.mp4

    and this is the result I published on YouTube :

    https://www.youtube.com/watch?v=8vwUFO9uF-U

    My problem : Some of the videos received Content ID claim and were blocked in 244 countries, for example :

    https://www.youtube.com/watch?v=IVt24GLmfVY

    My question : Is it possible to transcode video a little bit with FFmpeg in order to bypass YouTube Content ID and how to do it ?

  • how Youtube Ios app is playing 1080p and above ?

    19 septembre 2018, par user10387397

    I have been going through video codecs and ffmpeg .

    Understood everything between vp9 , HEVC(h.265) and H264 , webm dash streaming , and hls streaming.

    As far as i have read and understood that youtube stopped encoding for 1080p and higher in H264 and made it available only in webm VP9. Thus safari is limited by 720p.

    However, in IOS native app of youtube , they are providing 1080p and 1440p . Are they encoding it in different format ?

    The main question i would want to ask is how are they able to play 1080p and above in ios app when they were encoding this only in VP9 webm , whereas ios doesnot support VP9.

  • downloading and concatenating parts of videos from youtube

    17 octobre 2018, par amit

    I’m trying to create a video quiz, that will contain small parts of other videos, concatenated together (with the purpose, that people will identify from where these short snips are taken from).

    For this purpose I created a file that contain the URL of the video, the starting time of the "snip", and its length. for example :

    https://www.youtube.com/watch?v=5-j6LLkpQYY   00:00   01:00
    https://www.youtube.com/watch?v=b-DqO_D1g1g   14:44   01:20
    https://www.youtube.com/watch?v=DPAgWKseVhg   12:53   01:00

    Meaning that the first part should take the video from the first URL from its beginning and last for a minute, the second part should be taken from the second URL starting from 14:44 (minutes:seconds) and last one minute and 20 seconds and so forth.

    Then all these parts should be concatenated to a single video.

    I’m trying to write a script (I use ubuntu and fluent in several scripting languages) that does that, and I tried to use youtube-dl command line package and ffmpeg, but I couldn’t find the right options to achieve what I need.

    Any suggestions will be appreciated.