Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (77)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Ajout d’utilisateurs manuellement par un administrateur

    12 avril 2011, par

    L’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
    Sur cette page il est possible de :
    1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
    2. d’ajouter ou modifier/supprimer un utilisateur
    Dans le second formulaire présent un administrateur peut ajouter, (...)

Sur d’autres sites (12712)

  • FFmpeg grep and sed not working

    5 janvier 2017, par utdev

    I recently installed ffmpeg and tried a few commands which worked fine.

    Later on I tried commands like following :

    ffprobe -i input.file -show_format | grep duration
    ffprobe -i input.file -show_format -v quiet | sed -n 's/duration=//p'

    But I got following error :

    Grep : The term "grep" was not recognized as the name of a cmdlet,
    function, script file, or executable.

    The same for sed.

    How can I solve this ?

    I am working on a windows machine.

  • Get_iplayer not converting to MP4 [closed]

    16 juin 2022, par PhilDunford

    get_iplayer

    


    I know that this is an old piece of code, but it still does a great job.

    


    In the last week or so it's stopped converting the .ts files to .mp4. I've seem this mentioned elsewhere, but no solution. I think the key line among many error messages may be 'unable to determine ffmpeg version'.

    


    I assume the BBC has done something to break it (this has happened many times before).

    


    Needs someone much cleverer than me to fix it. Does anyone still update the code or know a work around ?

    


  • FFmpeg matching encoding output between 2 vidoes

    12 juillet 2018, par 2haloes

    I am trying to replace a boot video from my device however I’m unable to get both videos to match despite my best efforts which causes the video not to show at all and I’m sure that the issue is caused by an encoding difference between the videos.

    The original file output from ffprobe is as follows :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '[FOLDER]/1_powerup_2017_main.mp4':
    Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: mp42isomavc1
    creation_time   : 2016-12-07T20:39:51.000000Z
    encoder         : HandBrake 0.9.9 2013051800
    Duration: 00:00:11.01, start: 0.000000, bitrate: 4789 kb/s
    Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1080x1920 [SAR 1:1 DAR 9:16], 4648 kb/s, 24 fps, 24 tbr, 90k tbn, 180k tbc (default)
    Metadata:
     creation_time   : 2016-12-07T20:39:51.000000Z
     encoder         : JVT/AVC Coding
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 140 kb/s (default)
    Metadata:
     creation_time   : 2016-12-07T20:39:51.000000Z

    Which I used the following command to attempt to create :

    ffmpeg -i [INPUT]  -vf setsar=1,format=yuv420p -r 24 -c:v libx264 -profile:v main -brand mp42 -color_primaries bt709 -color_trc bt709 -colorspace bt709 [OUTPUT]

    This command creates a video with the following ffprobe output :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '[FOLDER]/1_powerup_2017_main.mp4':
    Metadata:
    major_brand     : mp42
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf57.83.100
    Duration: 00:00:06.34, start: 0.000000, bitrate: 988 kb/s
    Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1080x1920 [SAR 1:1 DAR 9:16], 972 kb/s, 24 fps, 24 tbr, 12288 tbn, 48 tbc (default)
    Metadata:
     handler_name    : VideoHandler
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 9 kb/s (default)
    Metadata:
     handler_name    : SoundHandler

    Is this to do with the compatible_brands or is there a Handbrake preset that could be used that I didn’t notice ?