Recherche avancée

Médias (91)

Autres articles (71)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11041)

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